body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(-45deg, #1a1a1a, #2c3e50, #1a1a1a, #2c1a05);
    background-size: 400% 400%;
    animation: gradient-animation 15s ease infinite;
    color: #f0f0f0;
    margin: 0;
    text-align: center;
    min-height: 100vh;
}

@keyframes gradient-animation {
    0% { background-position: 0 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0 50%; }
}

header {
    background: rgba(51, 51, 51, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #ff9900;
    padding: 3rem 0;
    margin-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 153, 0, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.volume-control {
    margin-top: 1rem;
}

.volume-control {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.volume-control label {
    color: #f0f0f0;
    font-weight: bold;
}

.volume-control input[type="range"] {
    -webkit-appearance: none;
    width: 200px;
    height: 8px;
    background: #555;
    border-radius: 5px;
    outline: none;
    transition: background 0.2s ease-in-out;
}

.volume-control input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #ff9900;
    cursor: pointer;
    transition: background 0.2s ease-in-out;
}

.volume-control input[type="range"]::-webkit-slider-thumb:hover {
    background: #e68a00;
}

h1 {
    font-size: 3.5rem;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 4px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 0 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.card {
    background: rgba(42, 42, 42, 0.6);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    transform: translateY(30px);
    animation: fade-in-up 0.6s forwards;
}

.card:nth-child(2) { animation-delay: 0.2s; }
.card:nth-child(3) { animation-delay: 0.4s; }

@keyframes fade-in-up {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 15px 45px rgba(255, 153, 0, 0.2);
    border-color: rgba(255, 153, 0, 0.4);
}

.card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: filter 0.3s ease;
}

.card:hover img {
    filter: brightness(1.1);
}

.card img.honking {
    animation: honk-animation 0.5s ease-in-out;
}

@keyframes honk-animation {
    0% { transform: scale(1) rotate(0); }
    25% { transform: scale(1.1) rotate(2deg); }
    75% { transform: scale(1.1) rotate(-2deg); }
    100% { transform: scale(1) rotate(0); }
}

.btn {
    display: inline-block;
    background: linear-gradient(135deg, #ff9900, #ffcc00);
    color: #1a1a1a;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    cursor: pointer;
    margin: 1rem;
    box-shadow: 0 4px 15px rgba(255, 153, 0, 0.3);
}

.btn:hover {
    background: linear-gradient(135deg, #ffcc00, #ff9900);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 153, 0, 0.5);
}

.btn:active {
    transform: translateY(1px) scale(0.98);
}

.honk-btn {
    width: calc(100% - 2rem);
}

.honk-btn.playing {
    background-color: #e68a00; /* Darker orange when playing */
    transform: translateY(2px); /* Simulate button press */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.stream-links {
    padding: 4rem 2rem;
    background: rgba(42, 42, 42, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    margin-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.stream-links h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #ff9900;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.stream-btn {
    margin: 0.5rem;
}

footer {
    background-color: rgba(51, 51, 51, 0.8);
    color: #888;
    padding: 2rem 0;
    margin-top: 0;
    border-top: 1px solid rgba(255, 153, 0, 0.1);
}