
    :root {
      --warning: #f7c111;
      --warning-dark: #b38f2a;
      --secondary: #1e1e2f;
      --dark-bg: #0a0a12;
      --light-bg: #f8f9fc;
      --text-light: #ffffff;
      --text-dark: #111111;
      --glass-bg: rgba(255, 255, 255, 0.08);
      --glass-border: rgba(255, 255, 255, 0.15);
      --transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', sans-serif;
      background-color: var(--light-bg);
      color: var(--text-dark);
      overflow-x: hidden;
      scroll-behavior: smooth;
    }

    /* Modern Gradient Backgrounds */
    .bg-gradient-gold {
      background: linear-gradient(135deg, var(--warning) 0%, #f3e5ab 100%);
    }

    .bg-gradient-dark {
      background: linear-gradient(145deg, #0a0a12 0%, #12121c 100%);
    }

    /* Header - Glassmorphism */
    .header.modern-header {
      background: rgba(10, 10, 18, 0.7);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(212, 175, 55, 0.3);
      transition: var(--transition);
      z-index: 1030;
    }

    .header.modern-header.scrolled {
      background: rgba(0, 0, 0, 0.85);
      backdrop-filter: blur(16px);
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    }

    .menu-toggle {
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(212, 175, 55, 0.5);
      transition: var(--transition);
    }

    .menu-toggle:hover {
      background: var(--warning);
      border-color: var(--warning);
    }

    .dropdown-menu.modern-dropdown {
      background: rgba(15, 15, 25, 0.95);
      backdrop-filter: blur(16px);
      border: 1px solid rgba(212, 175, 55, 0.3);
      border-radius: 24px;
      padding: 1.5rem;
      box-shadow: 0 25px 40px rgba(0, 0, 0, 0.3);
    }

    /* Hero Banner */
    .hero-section {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: flex-end;
      overflow: hidden;
    }

    .hero-video {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
    }

    .hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
      z-index: 1;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      padding-bottom: 6rem;
    }

    .hero-title {
      font-size: clamp(3rem, 10vw, 7rem);
      line-height: 90px;
      font-weight: 800;
      letter-spacing: -0.02em;
      background: linear-gradient(135deg, #fff 30%, var(--warning) 80%);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      text-shadow: 0 2px 10px rgba(0,0,0,0.2);
    }

    .youtube-circle {
      background: rgba(255,255,255,0.2);
      backdrop-filter: blur(8px);
      transition: var(--transition);
      cursor: pointer;
    }
    .youtube-circle:hover {
      transform: scale(1.1);
      background: #ff0000;
    }

    /* Section Titles */
    .section-badge {
      background: rgba(212, 175, 55, 0.15);
      color: var(--warning);
      padding: 0.4rem 1rem;
      border-radius: 40px;
      font-weight: 600;
      font-size: 0.85rem;
      letter-spacing: 1px;
    }

    .section-title {
      font-size: 2.8rem;
      font-weight: 800;
      line-height: 1.2;
    }

    /* Modern Cards */
    .music-card {
      background: white;
      border-radius: 32px;
      overflow: hidden;
      transition: var(--transition);
      border: none;
      box-shadow: 0 20px 35px -12px rgba(0,0,0,0.1);
    }
    .music-card:hover {
      transform: translateY(-12px);
      box-shadow: 0 30px 45px -12px rgba(0,0,0,0.2);
    }
    .card-video iframe {
      width: 100%;
      aspect-ratio: 16/9;
      border: none;
    }
    .badge-modern {
      background: rgba(212, 175, 55, 0.2);
      color: var(--warning-dark);
      font-weight: 500;
      padding: 0.4rem 1rem;
      border-radius: 50px;
    }

    /* Volume Feature */
    .volume-hero {
      background: linear-gradient(125deg, #0f0f1a 0%, #1a1a2a 100%);
      border-radius: 48px;
      padding: 3rem;
      position: relative;
      overflow: hidden;
    }
    .volume-hero::before {
      content: '';
      position: absolute;
      top: -30%;
      right: -10%;
      width: 300px;
      height: 300px;
      background: radial-gradient(circle, rgba(212,175,55,0.2) 0%, rgba(0,0,0,0) 70%);
      border-radius: 50%;
    }

    /* Objectives Grid */
    .objective-item {
      background: white;
      border-radius: 28px;
      padding: 1.8rem;
      transition: var(--transition);
      box-shadow: 0 15px 30px -10px rgba(0,0,0,0.05);
      height: 100%;
      border: 1px solid rgba(0,0,0,0.05);
    }
    .objective-item:hover {
      transform: translateY(-8px);
      box-shadow: 0 25px 40px -12px rgba(0,0,0,0.15);
    }
    .objective-img {
      border-radius: 24px;
      width: 100%;
      height: 220px;
      object-fit: cover;
      transition: var(--transition);
    }

    /* Donate & Contact */
    .contact-card {
      background: white;
      border-radius: 32px;
      padding: 2rem;
      transition: var(--transition);
      height: 100%;
      border: 1px solid rgba(0,0,0,0.05);
    }
    .contact-icon {
      width: 54px;
      height: 54px;
      background: rgba(212, 175, 55, 0.15);
      border-radius: 60px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.6rem;
      color: var(--warning-dark);
    }

    /* Form Modern */
    .modern-input {
      background: transparent;
      border: none;
      border-bottom: 2px solid rgba(0,0,0,0.15);
      border-radius: 0;
      padding: 0.8rem 0;
      transition: var(--transition);
      font-weight: 500;
    }
    .modern-input:focus {
      border-bottom-color: var(--warning);
      box-shadow: none;
      background: transparent;
    }

    .btn-modern {
      background: linear-gradient(95deg, var(--warning) 0%, #e6c452 100%);
      border: none;
      padding: 0.9rem 2rem;
      border-radius: 60px;
      font-weight: 700;
      color: #0a0a12;
      transition: var(--transition);
      box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
    }
    .btn-modern:hover {
      transform: translateY(-3px);
      box-shadow: 0 15px 30px rgba(212, 175, 55, 0.4);
      color: #000;
    }

    .btn-outline-gold {
      border: 1.5px solid var(--warning);
      background: transparent;
      border-radius: 60px;
      padding: 0.7rem 1.6rem;
      font-weight: 600;
      transition: var(--transition);
      color: var(--warning);
    }
    .btn-outline-gold:hover {
      background: var(--warning);
      color: #000;
    }

    /* Footer */
    .footer-modern {
      background: #050508;
      border-top: 1px solid rgba(212, 175, 55, 0.2);
    }
    .footer-link {
      color: rgba(255,255,255,0.7);
      text-decoration: none;
      transition: var(--transition);
    }
    .footer-link:hover {
      color: var(--warning);
      transform: translateX(5px);
    }

    /* Scroll to top */
    .scroll-top {
      position: fixed;
      bottom: 30px;
      right: 30px;
      width: 52px;
      height: 52px;
      background: var(--warning);
      border-radius: 60px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      z-index: 99;
      opacity: 0;
      visibility: hidden;
      transition: var(--transition);
      box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    }
    .scroll-top.show {
      opacity: 1;
      visibility: visible;
    }

      /* custom vibrant music section styling */
        .stream-section {
            background: #ffffff;
            border-radius: 48px;
            box-shadow: 0 25px 45px -12px rgba(0,0,0,0.2), 0 2px 8px rgba(0,0,0,0.02);
            transition: all 0.2s ease;
            overflow: hidden;
            border: 1px solid rgba(0,0,0,0.05);
        }
        .section-header {
            background: linear-gradient(135deg, #1a1e2b 0%, #0f121c 100%);
            padding: 2rem 2rem 1.8rem;
            text-align: center;
            color: white;
        }
        .stream-icon-grid {
            padding: 2rem 1.8rem 1.5rem;
            background: white;
        }
        .platform-btn {
            transition: all 0.25s ease;
            border-radius: 60px;
            font-weight: 600;
            padding: 0.75rem 1rem;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            background: #f2f4f8;
            color: #1f2937;
            border: 1px solid #e2e8f0;
        }
        .platform-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 20px -12px rgba(0,0,0,0.2);
            background: white;
            border-color: #cbd5e1;
        }
        /* brand-specific hover colors */
        .btn-spotify:hover { background: #1DB954; color: white; border-color: #1DB954; }
        .btn-apple:hover { background: #fa233b; color: white; border-color: #fa233b; }
        .btn-soundcloud:hover { background: #ff7700; color: white; border-color: #ff7700; }
        .btn-youtube:hover { background: #FF0000; color: white; border-color: #FF0000; }
        
        .social-circle {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 52px;
            height: 52px;
            border-radius: 30px;
            background: #ffffff;
            color: #1e293b;
            font-size: 1.8rem;
            transition: all 0.2s ease;
            text-decoration: none;
            border: 1px solid #e9edf2;
            box-shadow: 0 4px 8px rgba(0,0,0,0.02);
        }
        .social-circle:hover {
            transform: translateY(-4px);
        }
        .social-circle.ig:hover { background: radial-gradient(circle at 30% 110%, #ffdb59, #d62976, #962fbf); color: white; border-color: transparent; }
        .social-circle.tt:hover { background: #000000; color: #25F4EE; border-color: #000; }
        .social-circle.fb:hover { background: #1877F2; color: white; border-color: #1877F2; }
        
        .follow-card {
            background: #fafcff;
            border-radius: 28px;
            padding: 1.2rem 1rem;
            text-align: center;
            border: 1px solid rgba(0,0,0,0.04);
            transition: all 0.2s;
        }
        .follow-card:hover {
            background: white;
            box-shadow: 0 12px 22px -12px rgba(0,0,0,0.08);
        }
        .divider-custom {
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, #3b82f6, #a855f7);
            margin: 1rem auto 1rem auto;
            border-radius: 3px;
        }
        @media (max-width: 768px) {
            .platform-btn { font-size: 0.85rem; padding: 0.65rem 0.8rem; }
            .social-circle { width: 44px; height: 44px; font-size: 1.5rem; }
            .section-header { padding: 1.5rem 1rem; }
        }

    @media (max-width: 768px) {
      .section-title { font-size: 2rem; }
      .volume-hero { padding: 2rem; }
    }
 