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

body {
    font-family: 'Inter';
    background: linear-gradient(135deg, #274129 0%, #000000 100%);
    min-height: 100vh;
    color: #2d4831;
    line-height: 1.6;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.header {
    text-align: center;
    margin-bottom: 3rem;
    background: rgba(4, 29, 0, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.song-title {
    font-size: 3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.artist {
    font-size: 1.25rem;
    color: #cfcfcf;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.content {
    display: grid;
    gap: 2rem;
}

.player-section {
    background: rgba(4, 29, 0, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.player-section iframe {
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.lyrics-section {
    background: rgba(4, 29, 0, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.lyrics-section h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 2rem;
    text-align: center;
    letter-spacing: -0.01em;
}

.lyrics {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #cfcfcf;
}

.lyrics p {
    margin-bottom: 1.5rem;
    text-align: center;
}