   /* Reset & Base */
    *, *::before, *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    :root {
      --background: hsl(0, 0%, 4%);
      --foreground: hsl(45, 10%, 95%);
      --primary: hsl(43, 70%, 55%);
      --muted-foreground: hsl(45, 5%, 60%);
      --border: hsl(0, 0%, 18%);
      --gold: hsl(43, 70%, 55%);
      --gold-light: hsl(43, 80%, 65%);
      --gold-dark: hsl(43, 60%, 45%);
    }

    body {
      font-family: 'Inter', sans-serif;
      background-color: var(--background);
      color: var(--foreground);
      min-height: 100vh;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      overflow-x: hidden;
    }

    h1, h2, h3, h4, h5, h6 {
      font-family: 'Playfair Display', serif;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    /* Background Effects */
    .bg-spotlight {
      position: fixed;
      inset: 0;
      background: radial-gradient(ellipse at center top, hsla(43, 70%, 55%, 0.1) 0%, transparent 60%);
      pointer-events: none;
      z-index: 0;
    }

    .bg-grain {
      position: fixed;
      inset: 0;
      opacity: 0.015;
      pointer-events: none;
      z-index: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' 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)'/%3E%3C/svg%3E");
    }

    /* Header */
    .header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 50;
      padding: 1rem 1.5rem;
      animation: fadeInDown 0.6s ease-out;
    }

    @media (min-width: 768px) {
      .header {
        padding: 1.5rem 3rem;
      }
    }

    .header-inner {
      max-width: 80rem;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .logo {
      height: 2.5rem;
      width: auto;
    }

    @media (min-width: 768px) {
      .logo {
        height: 3.5rem;
      }
    }

    .nav {
      display: none;
      align-items: center;
      gap: 2rem;
    }

    @media (min-width: 768px) {
      .nav {
        display: flex;
      }
    }

    .nav a {
      font-size: 0.875rem;
      font-weight: 500;
      color: var(--muted-foreground);
      transition: color 0.3s ease;
    }

    .nav a:hover {
      color: var(--primary);
    }

    .nav-pill {
      background: linear-gradient(135deg, var(--gold), var(--gold-dark));
      color: #fff;
      color: var(--background);
      padding: 0.5rem 1.25rem;
      border-radius: 9999px;
      font-size: 0.875rem;
      font-weight: 600;
      transition: all 0.3s ease;
      box-shadow: 0 2px 8px hsla(43, 70%, 55%, 0.3);
    }

    .nav-pill:hover {
      transform: translateY(-1px);
      box-shadow: 0 4px 12px hsla(43, 70%, 55%, 0.4);
    }

    .nav a.nav-pill {
      color: #fff;
    }

    /* Main Content */
    .main {
      position: relative;
      padding-top: 8rem;
      padding-left: 1.5rem;
      padding-right: 1.5rem;
      z-index: 1;
    }

    @media (min-width: 768px) {
      .main {
        padding-top: 10rem;
      }
    }

    /* Section Label */
    .section-header {
      text-align: center;
      margin-bottom: 2rem;
      animation: fadeInUp 0.6s ease-out;
    }

    @media (min-width: 768px) {
      .section-header {
        margin-bottom: 3rem;
      }
    }

    .section-label {
      display: inline-block;
      font-size: 0.75rem;
      font-weight: 500;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--primary);
      margin-bottom: 0.75rem;
    }

    @media (min-width: 768px) {
      .section-label {
        font-size: 0.875rem;
      }
    }

    .section-title {
      font-size: 2.25rem;
      font-weight: 700;
      letter-spacing: -0.025em;
    }

    @media (min-width: 768px) {
      .section-title {
        font-size: 3.75rem;
      }
    }

    @media (min-width: 1024px) {
      .section-title {
        font-size: 4.5rem;
      }
    }

    .text-gradient-gold {
      background: linear-gradient(135deg, hsl(43, 70%, 55%), hsl(43, 80%, 70%));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    /* Video Player */
    .video-wrapper {
      position: relative;
      width: 100%;
      max-width: 64rem;
      margin: 0 auto;
      animation: scaleIn 0.8s ease-out 0.2s both;
    }

    .video-glow {
      position: absolute;
      inset: -1rem;
      background: linear-gradient(to right, hsla(43, 70%, 55%, 0.1), hsla(43, 70%, 55%, 0.05), hsla(43, 70%, 55%, 0.1));
      filter: blur(48px);
      border-radius: 1.5rem;
      animation: glowPulse 4s ease-in-out infinite;
    }

    .video-container {
      position: relative;
      aspect-ratio: 16 / 9;
      border-radius: 0.5rem;
      overflow: hidden;
      box-shadow: 0 25px 80px -20px hsla(0, 0%, 0%, 0.8);
      border: 1px solid hsla(0, 0%, 100%, 0.08);
    }

    .video-container iframe {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      border: none;
    }

    /* Video Info */
    .video-info {
      max-width: 48rem;
      margin: 3rem auto 0;
      text-align: center;
      padding: 0 1.5rem;
      animation: fadeInUp 0.8s ease-out 0.5s both;
    }

    @media (min-width: 768px) {
      .video-info {
        margin-top: 4rem;
      }
    }

    .artist-name {
      font-size: 1.875rem;
      font-weight: 600;
      letter-spacing: -0.025em;
      margin-bottom: 0.5rem;
    }

    @media (min-width: 768px) {
      .artist-name {
        font-size: 3rem;
      }
    }

    .video-title {
      font-size: 1.25rem;
      color: hsla(45, 10%, 95%, 0.9);
      font-style: italic;
      margin-bottom: 1.5rem;
    }

    @media (min-width: 768px) {
      .video-title {
        font-size: 1.5rem;
      }
    }

    .director-credit {
      font-size: 0.875rem;
      color: var(--muted-foreground);
      margin-bottom: 2rem;
      line-height: 1.8;
    }

    .director-credit span {
      color: var(--foreground);
    }

    .director-credit a {
      color: var(--foreground);
      text-decoration: none;
      border-bottom: 1px solid transparent;
      transition: border-color 0.3s ease;
    }

    .director-credit a:hover {
      border-color: var(--primary);
    }

    /* Divider */
    .divider {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 1rem;
      margin-bottom: 2rem;
    }

    .divider-line {
      height: 1px;
      width: 4rem;
      background: linear-gradient(to right, transparent, hsla(43, 70%, 55%, 0.5));
    }

    .divider-line:last-child {
      background: linear-gradient(to left, transparent, hsla(43, 70%, 55%, 0.5));
    }

    .divider-dot {
      width: 0.375rem;
      height: 0.375rem;
      border-radius: 50%;
      background-color: var(--gold);
    }

    .description {
      font-size: 1rem;
      line-height: 1.75;
      color: var(--muted-foreground);
      max-width: 42rem;
      margin: 0 auto;
      padding-bottom: 30px;
    }

    @media (min-width: 768px) {
      .description {
        font-size: 1.125rem;
      }
    }

    .description a {
      color: var(--foreground);
      text-decoration: none;
      border-bottom: 1px solid transparent;
      transition: border-color 0.3s ease;
    }

    .description a:hover {
      border-color: var(--primary);
    }

    .submit-pill {
      display: inline-block;
      margin-top: 2.5rem;
      background: linear-gradient(135deg, var(--gold), var(--gold-dark));
      color: #fff;
      padding: 0.75rem 2rem;
      border-radius: 9999px;
      font-size: 1rem;
      font-weight: 600;
      transition: all 0.3s ease;
      box-shadow: 0 2px 12px hsla(43, 70%, 55%, 0.3);
    }

    .submit-pill:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px hsla(43, 70%, 55%, 0.4);
    }

    .submit-text {
      margin-top: 1rem;
      font-size: 0.875rem;
      color: var(--muted-foreground);
    }

    /* Footer */
    .footer {
      margin-top: 5rem;
      padding: 0 1.5rem 2rem;
      animation: fadeIn 0.6s ease-out 0.8s both;
    }

    @media (min-width: 768px) {
      .footer {
        margin-top: 8rem;
      }
    }

    .footer-inner {
      max-width: 80rem;
      margin: 0 auto;
    }

    .footer-divider {
      height: 1px;
      width: 100%;
      background: linear-gradient(to right, transparent, var(--border), transparent);
      margin-bottom: 2rem;
    }

    .footer-content {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      font-size: 0.875rem;
      color: var(--muted-foreground);
    }

    @media (min-width: 768px) {
      .footer-content {
        flex-direction: row;
      }
      
	  .footer-copyright {
      	align-items: center;
      }
      
    }

    .footer-links, .footer-copyright {
      display: flex;
      align-items: center;
      gap: 1.5rem;
    }

    .footer-links a {
      transition: color 0.3s ease;
    }

    .footer-links a:hover {
      color: var(--primary);
    }

    /* Animations */
    @keyframes fadeInDown {
      from {
        opacity: 0;
        transform: translateY(-20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

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

    @keyframes fadeIn {
      from {
        opacity: 0;
      }
      to {
        opacity: 1;
      }
    }

    @keyframes scaleIn {
      from {
        opacity: 0;
        transform: scale(0.95);
      }
      to {
        opacity: 1;
        transform: scale(1);
      }
    }

    @keyframes glowPulse {
      0%, 100% {
        opacity: 1;
      }
      50% {
        opacity: 0.6;
      }
    }