* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #000000;
    color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.container {
    width: 100%;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

/* Logo Section */
.logo-section {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-section img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Player Section */
.player-section {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    margin-bottom: -2rem;
}

.player-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    background-color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s ease;
    padding: 0;
}

.player-btn:hover {
    opacity: 0.8;
}

.player-btn:active {
    opacity: 0.6;
}

.player-btn svg {
    width: 20px;
    height: 20px;
    fill: #000000;
}

.player-btn.play-btn.paused svg {
    margin-left: 2px; /* Slight adjustment for play icon centering */
}

.player-btn.next-btn svg {
    width: 18px;
    height: 18px;
}

/* Now Playing Section */
.now-playing-section {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60px;
}

.now-playing-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.now-playing-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffffff;
    opacity: 0.7;
}

.now-playing-title {
    font-size: 0.9rem;
    color: #ffffff;
    text-align: center;
}

/* Text Section */
.text-section {
    width: 100%;
    max-width: 750px;
    text-align: center;
}

.text-section p {
    font-size: 1rem;
    line-height: 1.6;
    color: #ffffff;
}

/* CTA Section */
.cta-section {
    width: 100%;
    display: flex;
    justify-content: center;
}

.cta-button {
    background-color: #ffffff;
    color: #000000;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: opacity 0.2s ease;
    font-family: inherit;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    opacity: 0.9;
}

.cta-button:active {
    opacity: 0.8;
}

/* Laylo Section */
.laylo-section {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.laylo-section iframe {
    border: none;
}

/* Social Section */
.social-section {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    padding-top: 1rem;
}

.social-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.875rem;
    transition: opacity 0.2s ease;
    display: inline-block;
}

.social-link img {
    width: 24px;
    height: 24px;
    display: block;
}

.social-link:hover {
    opacity: 0.7;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .container {
        gap: 2rem;
    }
    
    .text-section p {
        font-size: 0.9rem;
    }
    
    .cta-button {
        padding: 0.875rem 1.5rem;
        font-size: 0.8rem;
    }
    
    .player-btn {
        width: 44px;
        height: 44px;
    }
}

