* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh; 
    background: #0d0d0d;
    color: #fff;
    overflow-x: hidden; /* Prevent horizontal scrolling */
    position: relative;
    padding: 20px; /* Extra padding for a box-like effect */
    overflow-y: auto; /* Allow vertical scrolling */
}

#matrix {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.coming-soon-container {
    text-align: center;
    background-color: rgba(33, 33, 33, 0.9);
    padding: 40px 20px;
    padding-top: 60px; /* More top padding for spacing */
    border-radius: 15px;
    box-shadow: 0 0 25px rgba(0, 255, 0, 0.5);
    width: 100%;
    max-width: 600px;
    transition: transform 0.4s ease;
    z-index: 10;
}

.coming-soon-container:hover {
    transform: scale(1.02);
}

.header {
    margin-bottom: 20px;
}

.profile-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.5);
    transition: transform 0.4s ease;
}

.profile-img:hover {
    transform: rotate(-5deg) scale(1.1);
}

.content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #0f0;
}

.content p {
    font-size: 1rem;
    margin-bottom: 30px;
    line-height: 1.6;
    color: #aaa;
}

.music-player {
    margin-top: 20px;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.controls {
    display: flex;
    align-items: center; /* Align elements vertically */
    justify-content: center; /* Ensure proper centering */
    gap: 10px; /* Add some space between elements */
    flex-wrap: nowrap; /* Keep elements on a single line */
}

#play-pause-btn {
    padding: 8px 15px;
    border: none;
    background: #0f0;
    color: #000;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s;
}

#play-pause-btn:hover {
    background: #33ff33;
}

#volume-control {
    width: 150px; /* Set fixed width for consistent appearance */
}

.contact-link {
    color: #0f0;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s, text-shadow 0.3s;
}

.contact-link:hover {
    color: #33ff33;
    text-shadow: 0 0 10px #33ff33;
}

/* Responsive styling for smaller devices */
@media (max-width: 768px) {
    .coming-soon-container {
        padding: 20px 15px 40px 15px; /* Adjusted padding for a box-like effect */
        max-width: 90%;
    }

    .profile-img {
        width: 100px; /* Adjusted for smaller screens */
        height: 100px;
    }

    .content h1 {
        font-size: 2rem;
    }

    .controls {
        flex-wrap: wrap; /* Wrap elements if they overflow on smaller screens */
    }

    #volume-control {
        width: 100%;
        max-width: 120px; /* Adjust max-width for smaller devices */
    }

    .content p {
        font-size: 1rem;
    }
}