* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --western-brown: #8B4513;
    --desert-sand: #D2B48C;
    --sunset-orange: #FF6B35;
    --dark-leather: #3E2723;
    --gold: #FFD700;
    --dusty-red: #C1440E;
    --night-sky: #1a1a2e;
    --wood-dark: #4A2511;
}

body {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(to bottom, #2c1810 0%, #1a1a2e 50%, #0f0f1e 100%);
    color: #f5f5f5;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* Western Stars Background */
.stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, white, transparent),
        radial-gradient(2px 2px at 60px 70px, white, transparent),
        radial-gradient(1px 1px at 50px 50px, white, transparent),
        radial-gradient(1px 1px at 130px 80px, white, transparent),
        radial-gradient(2px 2px at 90px 10px, white, transparent);
    background-repeat: repeat;
    background-size: 200px 200px;
    animation: twinkle 3s infinite;
    z-index: -1;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: rgba(62, 39, 35, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--gold);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo-section {
    flex: 0 0 auto;
}

.main-logo {
    height: 80px;
    width: auto;
    border-radius: 10px;
    border: 3px solid var(--gold);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

nav a {
    color: var(--desert-sand);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

nav a:hover {
    color: var(--gold);
    text-shadow: 0 0 10px var(--gold);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s;
}

nav a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 6rem 0;
    background: 
        linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><path d="M0 400 Q300 300 600 400 T1200 400 L1200 600 L0 600 Z" fill="%238B4513" opacity="0.3"/><path d="M0 450 Q300 400 600 450 T1200 450 L1200 600 L0 600 Z" fill="%23654321" opacity="0.3"/></svg>');
    background-size: cover;
    background-position: center;
    position: relative;
}

.western-title {
    font-family: 'Rye', cursive;
    font-size: 5rem;
    color: var(--gold);
    text-shadow: 
        3px 3px 0 var(--western-brown),
        6px 6px 0 var(--dark-leather),
        9px 9px 20px rgba(0, 0, 0, 0.8);
    margin-bottom: 1rem;
    animation: fadeInDown 1s ease-out;
}

.frequency {
    font-size: 2.5rem;
    color: var(--sunset-orange);
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
    animation: fadeIn 1.5s ease-out;
}

.tagline {
    font-size: 1.3rem;
    color: var(--desert-sand);
    margin-bottom: 2rem;
    animation: fadeIn 2s ease-out;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 2s ease-out;
}

/* Buttons */
.btn {
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
    display: inline-block;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--sunset-orange), var(--dusty-red));
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.6);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--western-brown), var(--wood-dark));
    color: var(--gold);
    border: 2px solid var(--gold);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.4);
    background: linear-gradient(135deg, var(--wood-dark), var(--western-brown));
}

/* Sections */
section {
    padding: 4rem 0;
}

h2 {
    font-family: 'Rye', cursive;
    font-size: 3rem;
    color: var(--gold);
    text-align: center;
    margin-bottom: 3rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Live Section */
.live-section {
    background: rgba(74, 37, 17, 0.3);
    backdrop-filter: blur(10px);
}

.radio-player {
    background: linear-gradient(135deg, rgba(62, 39, 35, 0.9), rgba(74, 37, 17, 0.9));
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border: 3px solid var(--gold);
    max-width: 800px;
    margin: 0 auto;
}

.now-playing {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.vinyl-disc {
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, #1a1a1a 30%, #000 31%, #000 35%, #333 36%, #333 65%, #000 66%);
    border-radius: 50%;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
}

.vinyl-disc::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    background: var(--gold);
    border-radius: 50%;
}

.rotating {
    animation: rotate 3s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.track-info {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.track-info .label {
    color: var(--desert-sand);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.track-info h3 {
    color: var(--gold);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.track-info p {
    color: var(--sunset-orange);
    font-size: 1.2rem;
}

.player-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.play-btn {
    background: linear-gradient(135deg, var(--sunset-orange), var(--dusty-red));
    color: white;
    border: none;
    padding: 1rem 3rem;
    font-size: 1.2rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.play-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.6);
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.volume-control span {
    font-size: 1.5rem;
}

#volumeSlider {
    width: 150px;
    height: 6px;
    background: var(--desert-sand);
    border-radius: 10px;
    outline: none;
    -webkit-appearance: none;
}

#volumeSlider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: var(--gold);
    border-radius: 50%;
    cursor: pointer;
}

#volumeSlider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: var(--gold);
    border-radius: 50%;
    cursor: pointer;
    border: none;
}

/* Audio Visualizer */
.audio-visualizer {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 8px;
    height: 60px;
}

.bar {
    width: 8px;
    background: linear-gradient(to top, var(--sunset-orange), var(--gold));
    border-radius: 4px;
    animation: wave 1s ease-in-out infinite;
}

.bar:nth-child(1) { animation-delay: 0s; }
.bar:nth-child(2) { animation-delay: 0.1s; }
.bar:nth-child(3) { animation-delay: 0.2s; }
.bar:nth-child(4) { animation-delay: 0.3s; }
.bar:nth-child(5) { animation-delay: 0.4s; }

@keyframes wave {
    0%, 100% { height: 20px; }
    50% { height: 60px; }
}

/* Request Section */
.request-section {
    background: rgba(26, 26, 46, 0.5);
}

.request-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.request-card {
    background: linear-gradient(135deg, rgba(62, 39, 35, 0.9), rgba(74, 37, 17, 0.9));
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid var(--gold);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s;
}

.request-card:hover {
    transform: translateY(-10px);
}

.card-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.request-card h3 {
    color: var(--gold);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.request-card p {
    color: var(--desert-sand);
    margin-bottom: 1.5rem;
}

.phone-number {
    display: inline-block;
    background: linear-gradient(135deg, var(--sunset-orange), var(--dusty-red));
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.3rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.phone-number:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.6);
}

/* Request Form */
.request-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.request-form input,
.request-form textarea {
    padding: 1rem;
    border: 2px solid var(--gold);
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.3);
    color: white;
    font-size: 1rem;
    font-family: 'Roboto', sans-serif;
    transition: all 0.3s;
}

.request-form input:focus,
.request-form textarea:focus {
    outline: none;
    border-color: var(--sunset-orange);
    box-shadow: 0 0 15px rgba(255, 107, 53, 0.3);
}

.request-form input::placeholder,
.request-form textarea::placeholder {
    color: var(--desert-sand);
}

/* Partners Section */
.partners-section {
    background: rgba(74, 37, 17, 0.3);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.partner-card {
    background: linear-gradient(135deg, rgba(62, 39, 35, 0.9), rgba(74, 37, 17, 0.9));
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 3px solid var(--gold);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s;
}

.partner-card:hover {
    transform: scale(1.05);
}

.partner-card img {
    max-width: 200px;
    height: auto;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    border: 2px solid var(--gold);
}

.partner-card h3 {
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.partner-card p {
    color: var(--desert-sand);
    line-height: 1.6;
}

/* Footer */
footer {
    background: rgba(62, 39, 35, 0.95);
    padding: 3rem 0 1rem;
    border-top: 3px solid var(--gold);
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h4 {
    color: var(--gold);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.footer-col p {
    color: var(--desert-sand);
    line-height: 1.8;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--gold);
    color: var(--desert-sand);
}

/* Notification */
.notification {
    position: fixed;
    bottom: 2rem;
    right: -500px;
    background: linear-gradient(135deg, var(--sunset-orange), var(--dusty-red));
    color: white;
    padding: 1.5rem 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    transition: right 0.4s ease-in-out;
    z-index: 2000;
    border: 2px solid var(--gold);
    max-width: 400px;
    visibility: hidden;
}

.notification.show {
    right: 2rem;
    visibility: visible;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .western-title {
        font-size: 3rem;
    }
    
    .frequency {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    nav ul {
        gap: 1rem;
    }
    
    nav a {
        font-size: 0.9rem;
    }
    
    .main-logo {
        height: 60px;
    }
    
    .radio-player {
        padding: 2rem 1rem;
    }
    
    .now-playing {
        flex-direction: column;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .western-title {
        font-size: 2rem;
    }
    
    .frequency {
        font-size: 1.5rem;
    }
    
    .tagline {
        font-size: 1rem;
    }
    
    header .container {
        flex-direction: column;
        gap: 1rem;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
}
