:root {
      --black: #0a0a0a;
      --deep: #111111;
      --charcoal: #1c1c1c;
      --rust: #8b1a1a;
      --ember: #c41f1f;
      --fire: #d42020;
      --gold: #e03030;
      --bone: #ddd5c8;
      --ash: #7a7065;
      --white: #f0ebe3;
    }

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

    html { scroll-behavior: smooth; }

    body {
      background: var(--black);
      color: var(--bone);
      font-family: 'Oswald', sans-serif;
      overflow-x: hidden;
      cursor: none;
    }

    /* CUSTOM CURSOR */
    .cursor {
      position: fixed;
      width: 12px; height: 12px;
      background: var(--fire);
      border-radius: 50%;
      pointer-events: none;
      z-index: 9999;
      transform: translate(-50%, -50%);
      transition: transform 0.1s, width 0.2s, height 0.2s;
      mix-blend-mode: screen;
    }
    .cursor-ring {
      position: fixed;
      width: 36px; height: 36px;
      border: 1px solid var(--fire);
      border-radius: 50%;
      pointer-events: none;
      z-index: 9998;
      transform: translate(-50%, -50%);
      transition: transform 0.15s ease-out, width 0.3s, height 0.3s, opacity 0.3s;
      opacity: 0.5;
    }

    /* GRAIN OVERLAY */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
      pointer-events: none;
      z-index: 9990;
      opacity: 0.35;
    }

    /* NAV */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1.2rem 3rem;
      background: linear-gradient(to bottom, rgba(8,8,8,0.98) 0%, transparent 100%);
      border-bottom: 1px solid rgba(200,148,58,0.12);
    }

    .nav-logo {
      display: flex;
      align-items: center;
      text-decoration: none;
    }
    .nav-logo img {
      height: 42px;
      width: auto;
      filter: none;
      transition: filter 0.3s;
    }
    .nav-logo:hover img {
      filter: brightness(1.15);
    }

    .nav-links {
      display: flex;
      gap: 2.5rem;
      list-style: none;
    }

    .nav-links a {
      font-family: 'Bebas Neue', cursive;
      font-size: 1rem;
      letter-spacing: 3px;
      color: var(--ash);
      text-decoration: none;
      transition: color 0.3s;
      position: relative;
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -4px; left: 0;
      width: 0; height: 1px;
      background: var(--fire);
      transition: width 0.3s;
    }

    .nav-links a:hover { color: var(--fire); }
    .nav-links a:hover::after { width: 100%; }

    .nav-live {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-family: 'Bebas Neue', cursive;
      letter-spacing: 2px;
      font-size: 0.85rem;
      color: var(--fire);
      border: 1px solid var(--fire);
      padding: 0.4rem 1rem;
      transition: all 0.3s;
    }
    .nav-live:hover {
      background: var(--fire);
      color: var(--black);
    }
    .live-dot {
      width: 7px; height: 7px;
      background: var(--fire);
      border-radius: 50%;
      animation: pulse 1.5s infinite;
    }
    @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.4; transform: scale(0.7); }
    }

    .footer-logo-link { text-decoration: none; display: inline-block; margin-bottom: 1rem; }
    .footer-logo-img {
      height: 55px;
      width: auto;
      filter: none;
    }

    /* HERO BG updated to red/black */
    .hero {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: flex-start;
      padding: 10rem 3rem 4rem;
      position: relative;
      overflow: hidden;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 60% 50% at 75% 60%, rgba(180,20,20,0.22) 0%, transparent 70%),
        radial-gradient(ellipse 40% 60% at 20% 40%, rgba(10,10,10,0.95) 0%, transparent 80%),
        linear-gradient(135deg, #0a0a0a 0%, #111111 40%, #1a0505 100%);
    }

    /* HORSE SVG SILHOUETTE */
    .horse-silhouette {
      position: absolute;
      right: -2%;
      bottom: 0;
      width: 65%;
      max-width: 780px;
      opacity: 0.18;
      filter: sepia(1) hue-rotate(10deg) brightness(0.4) contrast(2);
      animation: horseFloat 8s ease-in-out infinite;
    }

    @keyframes horseFloat {
      0%, 100% { transform: translateY(0px); }
      50% { transform: translateY(-12px); }
    }

    .hero-tag {
      font-family: 'Bebas Neue', cursive;
      letter-spacing: 6px;
      font-size: 0.8rem;
      color: var(--fire);
      margin-bottom: 1.2rem;
      display: flex;
      align-items: center;
      gap: 1rem;
      animation: fadeInUp 0.8s ease both;
    }
    .hero-tag::before {
      content: '';
      display: block;
      width: 40px; height: 1px;
      background: var(--fire);
    }

    .hero-title {
      animation: fadeInUp 0.8s 0.2s ease both;
      position: relative;
      z-index: 2;
    }

    .hero-title img {
      width: clamp(280px, 55vw, 680px);
      height: auto;
      filter: drop-shadow(0 0 40px rgba(196,31,31,0.45)) drop-shadow(0 4px 24px rgba(0,0,0,0.7));
    }

    .hero-subtitle {
      font-family: 'Special Elite', cursive;
      font-size: clamp(0.9rem, 2vw, 1.15rem);
      color: var(--ash);
      max-width: 520px;
      line-height: 1.7;
      margin-top: 1.5rem;
      margin-bottom: 2.5rem;
      animation: fadeInUp 0.8s 0.4s ease both;
      position: relative;
      z-index: 2;
    }

    .hero-cta {
      display: flex;
      gap: 1.2rem;
      animation: fadeInUp 0.8s 0.6s ease both;
      position: relative;
      z-index: 2;
    }

    .btn-primary {
      font-family: 'Bebas Neue', cursive;
      letter-spacing: 3px;
      font-size: 1rem;
      padding: 0.9rem 2.2rem;
      background: var(--fire);
      color: var(--black);
      text-decoration: none;
      border: none;
      cursor: none;
      position: relative;
      overflow: hidden;
      transition: all 0.3s;
      clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
    }
    .btn-primary:hover {
      background: var(--gold);
      transform: translateY(-2px);
      box-shadow: 0 8px 30px rgba(232,118,26,0.4);
    }

    .btn-secondary {
      font-family: 'Bebas Neue', cursive;
      letter-spacing: 3px;
      font-size: 1rem;
      padding: 0.9rem 2.2rem;
      background: transparent;
      color: var(--bone);
      text-decoration: none;
      border: 1px solid rgba(212,197,169,0.3);
      cursor: none;
      transition: all 0.3s;
      clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
    }
    .btn-secondary:hover {
      border-color: var(--fire);
      color: var(--fire);
    }

    .hero-scroll {
      position: absolute;
      bottom: 2.5rem;
      left: 3rem;
      display: flex;
      align-items: center;
      gap: 0.8rem;
      font-family: 'Bebas Neue', cursive;
      letter-spacing: 3px;
      font-size: 0.75rem;
      color: var(--ash);
      animation: fadeInUp 0.8s 1s ease both;
    }
    .scroll-line {
      width: 40px; height: 1px;
      background: var(--ash);
      animation: scrollPulse 2s ease-in-out infinite;
    }
    @keyframes scrollPulse {
      0%, 100% { width: 40px; opacity: 0.5; }
      50% { width: 60px; opacity: 1; }
    }

    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* DIVIDER */
    .divider {
      display: flex;
      align-items: center;
      gap: 1.5rem;
      padding: 0 3rem;
      margin: 3rem 0;
    }
    .divider-line { flex: 1; height: 1px; background: linear-gradient(to right, transparent, var(--rust), transparent); }
    .divider-icon {
      font-size: 1.2rem;
      color: var(--fire);
      opacity: 0.7;
    }

    /* SECTION HEADERS */
    .section-label {
      font-family: 'Bebas Neue', cursive;
      letter-spacing: 6px;
      font-size: 0.75rem;
      color: var(--fire);
      margin-bottom: 0.5rem;
      display: flex;
      align-items: center;
      gap: 0.8rem;
    }
    .section-label::before {
      content: '';
      display: block;
      width: 25px; height: 1px;
      background: var(--fire);
    }

    .section-title {
      font-family: 'Metal Mania', cursive;
      font-size: clamp(2rem, 5vw, 3.5rem);
      color: var(--white);
      line-height: 1;
      margin-bottom: 0.5rem;
    }

    /* RADIO/PODCAST SECTION */
    .radio-section {
      padding: 5rem 3rem;
      position: relative;
    }

    .radio-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
      margin-top: 3rem;
    }

    .now-playing {
      background: linear-gradient(135deg, var(--charcoal), var(--deep));
      border: 1px solid rgba(200,148,58,0.15);
      padding: 2.5rem;
      position: relative;
      overflow: hidden;
      grid-column: span 2;
      display: flex;
      align-items: center;
      gap: 2.5rem;
      clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
    }

    .now-playing::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at 20% 50%, rgba(180,20,20,0.2) 0%, transparent 60%);
      pointer-events: none;
    }

    .vinyl {
      width: 100px; height: 100px;
      min-width: 100px;
      border-radius: 50%;
      background: conic-gradient(from 0deg, #1a1212, #2a1818, #1a1212, #3a2020, #1a1212);
      border: 3px solid var(--rust);
      display: flex;
      align-items: center;
      justify-content: center;
      animation: spin 4s linear infinite;
      position: relative;
    }

    .vinyl::after {
      content: '';
      width: 20px; height: 20px;
      background: var(--charcoal);
      border-radius: 50%;
      border: 2px solid var(--rust);
    }

    @keyframes spin {
      from { transform: rotate(0deg); }
      to { transform: rotate(360deg); }
    }

    .now-playing-info { flex: 1; }

    .np-label {
      font-family: 'Bebas Neue', cursive;
      letter-spacing: 4px;
      font-size: 0.7rem;
      color: var(--fire);
      margin-bottom: 0.4rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .np-title {
      font-family: 'Metal Mania', cursive;
      font-size: 1.8rem;
      color: var(--white);
      margin-bottom: 0.3rem;
    }

    .np-artist {
      font-family: 'Oswald', sans-serif;
      font-weight: 300;
      color: var(--ash);
      font-size: 0.95rem;
      letter-spacing: 1px;
    }

    .progress-bar {
      margin-top: 1.2rem;
      background: rgba(255,255,255,0.08);
      height: 3px;
      border-radius: 2px;
      overflow: hidden;
      max-width: 400px;
    }
    .progress-fill {
      height: 100%;
      width: 62%;
      background: linear-gradient(to right, var(--rust), var(--fire));
      border-radius: 2px;
      animation: progressAnim 30s linear infinite;
    }
    @keyframes progressAnim {
      from { width: 10%; }
      to { width: 100%; }
    }

    .player-controls {
      display: flex;
      gap: 1rem;
      align-items: center;
      margin-top: 1rem;
    }

    .ctrl-btn {
      background: none;
      border: none;
      color: var(--ash);
      font-size: 1.2rem;
      cursor: none;
      transition: color 0.2s;
      padding: 0.3rem;
    }
    .ctrl-btn:hover { color: var(--fire); }
    .ctrl-btn.play {
      background: var(--fire);
      color: var(--black);
      width: 40px; height: 40px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
    }
    .ctrl-btn.play:hover { background: var(--gold); }

    .podcast-card {
      background: var(--charcoal);
      border: 1px solid rgba(200,148,58,0.1);
      padding: 1.8rem;
      transition: all 0.3s;
      cursor: none;
      position: relative;
      overflow: hidden;
      clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
    }

    .podcast-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(139,58,26,0) 0%, rgba(139,58,26,0.1) 100%);
      opacity: 0;
      transition: opacity 0.3s;
    }

    .podcast-card:hover { border-color: rgba(200,148,58,0.35); transform: translateY(-3px); }
    .podcast-card:hover::before { opacity: 1; }

    .ep-number {
      font-family: 'Bebas Neue', cursive;
      letter-spacing: 3px;
      font-size: 0.7rem;
      color: var(--fire);
      margin-bottom: 0.5rem;
    }

    .ep-title {
      font-family: 'Oswald', sans-serif;
      font-weight: 600;
      font-size: 1.1rem;
      color: var(--white);
      margin-bottom: 0.5rem;
      line-height: 1.3;
    }

    .ep-meta {
      font-size: 0.8rem;
      color: var(--ash);
      display: flex;
      gap: 1rem;
      letter-spacing: 0.5px;
    }

    .ep-play {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      margin-top: 1.2rem;
      font-family: 'Bebas Neue', cursive;
      letter-spacing: 2px;
      font-size: 0.8rem;
      color: var(--fire);
      border: 1px solid rgba(232,118,26,0.3);
      padding: 0.4rem 1rem;
      transition: all 0.2s;
    }
    .ep-play:hover { background: rgba(232,118,26,0.1); }

    /* NEWS SECTION */
    .news-section {
      padding: 5rem 3rem;
      background: var(--deep);
      position: relative;
    }

    .news-section::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(to right, transparent, var(--rust), transparent);
    }

    .news-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      gap: 1.5rem;
      margin-top: 3rem;
    }

    .news-card {
      background: var(--charcoal);
      border: 1px solid rgba(200,148,58,0.1);
      overflow: hidden;
      cursor: none;
      transition: all 0.3s;
      position: relative;
    }

    .news-card:hover { border-color: rgba(200,148,58,0.35); transform: translateY(-3px); }

    .news-card-img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
      background: linear-gradient(135deg, var(--rust) 0%, var(--charcoal) 100%);
      position: relative;
      overflow: hidden;
    }

    .news-card-img-inner {
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 4rem;
      opacity: 0.3;
      filter: grayscale(1);
    }

    .news-card.featured .news-card-img { height: 280px; }

    .news-cat {
      position: absolute;
      top: 1rem;
      left: 1rem;
      font-family: 'Bebas Neue', cursive;
      letter-spacing: 3px;
      font-size: 0.7rem;
      background: var(--fire);
      color: var(--black);
      padding: 0.2rem 0.6rem;
    }

    .news-card-body { padding: 1.5rem; }

    .news-date {
      font-family: 'Bebas Neue', cursive;
      letter-spacing: 2px;
      font-size: 0.7rem;
      color: var(--ash);
      margin-bottom: 0.5rem;
    }

    .news-title {
      font-family: 'Oswald', sans-serif;
      font-weight: 600;
      font-size: 1.05rem;
      color: var(--white);
      line-height: 1.35;
      margin-bottom: 0.6rem;
    }

    .news-card.featured .news-title {
      font-size: 1.4rem;
    }

    .news-excerpt {
      font-family: 'Special Elite', cursive;
      font-size: 0.82rem;
      color: var(--ash);
      line-height: 1.6;
    }

    .read-more {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      margin-top: 1rem;
      font-family: 'Bebas Neue', cursive;
      letter-spacing: 2px;
      font-size: 0.78rem;
      color: var(--fire);
      text-decoration: none;
      transition: gap 0.2s;
    }
    .read-more:hover { gap: 0.8rem; }

    /* EVENTS SECTION */
    .events-section {
      padding: 5rem 3rem;
      position: relative;
    }

    .events-section::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(to right, transparent, var(--rust), transparent);
    }

    .events-list {
      margin-top: 3rem;
      display: flex;
      flex-direction: column;
      gap: 1px;
    }

    .event-item {
      display: grid;
      grid-template-columns: 80px 1fr auto;
      gap: 2rem;
      align-items: center;
      padding: 1.8rem 2rem;
      background: var(--charcoal);
      border-left: 3px solid transparent;
      transition: all 0.3s;
      cursor: none;
      position: relative;
      overflow: hidden;
    }

    .event-item::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, rgba(139,58,26,0.15) 0%, transparent 50%);
      opacity: 0;
      transition: opacity 0.3s;
    }

    .event-item:hover {
      border-left-color: var(--fire);
      transform: translateX(4px);
    }
    .event-item:hover::before { opacity: 1; }

    .event-date {
      text-align: center;
    }

    .event-day {
      font-family: 'Metal Mania', cursive;
      font-size: 2rem;
      color: var(--fire);
      line-height: 1;
    }

    .event-month {
      font-family: 'Bebas Neue', cursive;
      letter-spacing: 3px;
      font-size: 0.7rem;
      color: var(--ash);
    }

    .event-info { position: relative; z-index: 1; }

    .event-name {
      font-family: 'Oswald', sans-serif;
      font-weight: 600;
      font-size: 1.15rem;
      color: var(--white);
      margin-bottom: 0.3rem;
    }

    .event-details {
      font-size: 0.82rem;
      color: var(--ash);
      display: flex;
      gap: 1.5rem;
      letter-spacing: 0.5px;
    }

    .event-tags {
      display: flex;
      gap: 0.4rem;
      flex-wrap: wrap;
    }

    .tag {
      font-family: 'Bebas Neue', cursive;
      letter-spacing: 2px;
      font-size: 0.65rem;
      padding: 0.2rem 0.6rem;
      border: 1px solid rgba(200,148,58,0.3);
      color: var(--gold);
    }

    .event-action {
      font-family: 'Bebas Neue', cursive;
      letter-spacing: 2px;
      font-size: 0.8rem;
      padding: 0.5rem 1.2rem;
      border: 1px solid var(--fire);
      color: var(--fire);
      cursor: none;
      transition: all 0.2s;
      background: none;
      white-space: nowrap;
    }
    .event-action:hover { background: var(--fire); color: var(--black); }

    /* FOOTER */
    footer {
      background: var(--deep);
      border-top: 1px solid rgba(200,148,58,0.12);
      padding: 4rem 3rem 2rem;
    }

    .footer-top {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 3rem;
      margin-bottom: 3rem;
    }

    .footer-brand {}

    .footer-logo {
      font-family: 'Metal Mania', cursive;
      font-size: 2rem;
      color: var(--fire);
      text-shadow: 0 0 20px rgba(232,118,26,0.4);
      margin-bottom: 1rem;
      display: block;
    }

    .footer-tagline {
      font-family: 'Special Elite', cursive;
      font-size: 0.85rem;
      color: var(--ash);
      line-height: 1.7;
      max-width: 260px;
    }

    .footer-socials {
      display: flex;
      gap: 0.8rem;
      margin-top: 1.5rem;
    }

    .social-btn {
      width: 36px; height: 36px;
      border: 1px solid rgba(200,148,58,0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.9rem;
      color: var(--ash);
      text-decoration: none;
      transition: all 0.2s;
      cursor: none;
    }
    .social-btn:hover { border-color: var(--fire); color: var(--fire); }

    .footer-col h4 {
      font-family: 'Bebas Neue', cursive;
      letter-spacing: 4px;
      font-size: 0.8rem;
      color: var(--fire);
      margin-bottom: 1.2rem;
    }

    .footer-col ul { list-style: none; }
    .footer-col ul li { margin-bottom: 0.6rem; }
    .footer-col ul li a {
      font-family: 'Oswald', sans-serif;
      font-weight: 300;
      font-size: 0.9rem;
      color: var(--ash);
      text-decoration: none;
      transition: color 0.2s;
      letter-spacing: 0.5px;
    }
    .footer-col ul li a:hover { color: var(--fire); }

    .footer-bottom {
      border-top: 1px solid rgba(200,148,58,0.1);
      padding-top: 1.5rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .footer-copy {
      font-family: 'Special Elite', cursive;
      font-size: 0.78rem;
      color: var(--ash);
      opacity: 0.6;
    }

    .footer-fm {
      font-family: 'Bebas Neue', cursive;
      letter-spacing: 4px;
      font-size: 0.75rem;
      color: var(--fire);
      opacity: 0.7;
    }

    /* WAVEFORM DECORATION */
    .waveform {
      display: flex;
      align-items: center;
      gap: 2px;
      height: 24px;
    }
    .waveform span {
      display: block;
      width: 3px;
      background: var(--fire);
      border-radius: 2px;
      animation: wave 1.2s ease-in-out infinite;
    }
    .waveform span:nth-child(1) { height: 8px; animation-delay: 0s; }
    .waveform span:nth-child(2) { height: 18px; animation-delay: 0.1s; }
    .waveform span:nth-child(3) { height: 12px; animation-delay: 0.2s; }
    .waveform span:nth-child(4) { height: 22px; animation-delay: 0.3s; }
    .waveform span:nth-child(5) { height: 8px; animation-delay: 0.4s; }
    .waveform span:nth-child(6) { height: 16px; animation-delay: 0.5s; }
    .waveform span:nth-child(7) { height: 10px; animation-delay: 0.6s; }
    @keyframes wave {
      0%, 100% { transform: scaleY(1); }
      50% { transform: scaleY(0.4); }
    }

    /* SCROLL REVEAL */
    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* RESPONSIVE */
    @media (max-width: 900px) {
      nav { padding: 1rem 1.5rem; }
      .nav-links { display: none; }
      .hero { padding: 8rem 1.5rem 4rem; }
      .hero-title { font-size: clamp(3rem, 15vw, 6rem); }
      .radio-section, .news-section, .events-section { padding: 4rem 1.5rem; }
      .radio-grid { grid-template-columns: 1fr; }
      .now-playing { grid-column: 1; flex-direction: column; text-align: center; }
      .news-grid { grid-template-columns: 1fr; }
      .event-item { grid-template-columns: 60px 1fr; }
      .event-action { display: none; }
      .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
      footer { padding: 3rem 1.5rem 1.5rem; }
    }