* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #051821 !important;
    color: white;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.container {
    text-align: center;
    z-index: 10;
    padding: 2rem;
    max-width: 800px;
}

h1 {
    font-size: 8rem;
    margin-bottom: 1rem;
    color: #2cd30c;
    text-shadow: 0 0 10px rgba(44, 211, 12, 0.7);
    animation: pulse 2s infinite;
}

h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: white;
}

p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.btn {
    display: inline-block;
    background-color: #2cd30c;
    color: #051821;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(44, 211, 12, 0.5);
    margin: 10px;
}

.btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(44, 211, 12, 0.8);
}

.radio-waves {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.vinyl-record {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #333 30%, #111 30%, #111 35%, #333 35%, #333 40%, #111 40%, #111 45%, #333 45%, #333 48%, #111 48%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 30px rgba(44, 211, 12, 0.3);
    animation: rotate 10s linear infinite;
    z-index: 5;
    opacity: 0.7;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.vinyl-center {
    width: 50px;
    height: 50px;
    background-color: #2cd30c;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(44, 211, 12, 0.8);
}

.radio-tower {
    position: absolute;
    bottom: 0;
    right: 10%;
    width: 100px;
    height: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
}

.tower-base {
    width: 60px;
    height: 20px;
    background-color: #333;
}

.tower-stem {
    width: 20px;
    height: 200px;
    background-color: #444;
}

.tower-signal {
    width: 100px;
    height: 30px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.signal-bar {
    width: 8px;
    background-color: #2cd30c;
    box-shadow: 0 0 10px rgba(44, 211, 12, 0.8);
    animation: signal-wave 1.5s infinite;
}

.signal-bar:nth-child(1) {
    height: 15px;
    animation-delay: 0s;
}

.signal-bar:nth-child(2) {
    height: 25px;
    animation-delay: 0.2s;
}

.signal-bar:nth-child(3) {
    height: 35px;
    animation-delay: 0.4s;
}

.signal-bar:nth-child(4) {
    height: 25px;
    animation-delay: 0.6s;
}

.signal-bar:nth-child(5) {
    height: 15px;
    animation-delay: 0.8s;
}

.equalizer {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 2rem;
    height: 60px;
}

.equalizer-bar {
    width: 10px;
    background-color: #2cd30c;
    border-radius: 5px;
    animation: equalizer-wave 1s infinite;
}

.floating-notes {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.note {
    position: absolute;
    color: #2cd30c;
    font-size: 2rem;
    opacity: 0;
    animation: float-up 4s linear infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes rotate {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes signal-wave {
    0% {
        opacity: 0.3;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.3;
    }
}

@keyframes equalizer-wave {
    0% {
        height: 10px;
    }

    50% {
        height: 50px;
    }

    100% {
        height: 10px;
    }
}

@keyframes float-up {
    0% {
        bottom: -50px;
        opacity: 0;
    }

    20% {
        opacity: 0.8;
    }

    80% {
        opacity: 0.8;
    }

    100% {
        bottom: 100%;
        opacity: 0;
    }
}

/* Responsive styles */
@media (max-width: 768px) {
    h1 {
        font-size: 5rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .vinyl-record {
        width: 200px;
        height: 200px;
        opacity: 0.4;
    }

    .radio-tower {
        right: 5%;
        transform: scale(0.8);
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 4rem;
    }

    h2 {
        font-size: 1.2rem;
    }

    p {
        font-size: 1rem;
    }

    .vinyl-record {
        width: 150px;
        height: 150px;
        opacity: 0.3;
    }

    .radio-tower {
        display: none;
    }

    .equalizer {
        height: 40px;
    }
}