:root {
        --purple-900: #4c1d95;
        --purple-800: #5b21b6;
        --purple-700: #6d28d9;
        --purple-600: #7c3aed;
        --purple-500: #8b5cf6;
        --purple-400: #a78bfa;
        --purple-300: #c4b5fd;
        --purple-200: #ddd6fe;
        --purple-100: #ede9fe;
        --purple-50: #f5f3ff;

        --gradient-primary: linear-gradient(135deg, var(--purple-900), var(--purple-600));
        --gradient-accent: linear-gradient(135deg, var(--purple-600), var(--purple-400));

        --text-primary: #ffffff;
        --text-secondary: #e5e7eb;
        --text-muted: #9ca3af;
        --bg-dark: #0f0f23;
        --bg-card: #1a1a2e;

        --gradient-hero-light: linear-gradient(135deg, rgba(76, 29, 149, 0.4), rgba(124, 58, 237, 0.3));
      }

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

      body {
        font-family: 'Inter', sans-serif;
        background: var(--bg-dark);
        color: var(--text-primary);
        line-height: 1.6;
        overflow-x: hidden;
      }

      .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
      }

      /* Header */
      header {
        position: fixed;
        top: 0;
        width: 100%;
        background: rgba(15, 15, 35, 0.95);
        backdrop-filter: blur(10px);
        z-index: 1000;
        transition: all 0.3s ease;
      }

      nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 0;
      }

      .logo {
        font-family: 'Playfair Display', serif;
        font-size: 1.8rem;
        font-weight: 700;
        background: var(--gradient-accent);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
      }

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

      .nav-links a {
        color: var(--text-secondary);
        text-decoration: none;
        font-weight: 500;
        transition: color 0.3s ease;
      }

      .nav-links a:hover {
        color: var(--purple-400);
      }

      /* Hero Section */
      .hero {
        height: 100vh;
        background: var(--gradient-hero-light);
        display: flex;
        align-items: center;
        position: relative;
        overflow: hidden;
      }

      .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('../images/Album_Cover-0314.png') no-repeat center center/cover;
        opacity: 0.3;
        filter: brightness(1.4) contrast(1.1);
      }

      .hero-content {
        position: relative;
        z-index: 2;
        text-align: center;
        max-width: 800px;
        margin: 450px auto 0 auto;
      }

      .hero h1 {
        font-family: 'Dancing Script', 'Edwardian Script ITC', 'Brush Script MT', serif;
        font-size: clamp(3rem, 8vw, 6rem);
        font-weight: 700;
        margin-bottom: 0 auto;
        color: #c8c8c8;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
      }

      .hero .subtitle {
        font-size: clamp(1.2rem, 3vw, 1.8rem);
        color: var(--purple-200);
        margin-bottom: 2rem;
        color: #c8c8c8;
        font-weight: 300;
      }

      .cta-button {
        display: inline-block;
        padding: 1rem 2.5rem;
        background: var(--gradient-accent);
        color: white;
        text-decoration: none;
        border-radius: 50px;
        font-weight: 600;
        font-size: 1.1rem;
        transition: all 0.3s ease;
        box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
      }

      .cta-button:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 35px rgba(139, 92, 246, 0.4);
        filter: brightness(1.1);
      }

      /* About Section */
      .about {
        padding: 6rem 0;
        background: var(--bg-dark);
      }

      .about-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
      }

      .about-text h2 {
        font-family: 'Playfair Display', serif;
        font-size: 3rem;
        color: var(--purple-400);
        margin-bottom: 2rem;
      }

      .about-text p {
        font-size: 1.1rem;
        color: var(--text-secondary);
        margin-bottom: 1.5rem;
        line-height: 1.8;
      }

      .about-image {
        /* background: var(--gradient-primary); */ /* Temporary Placeholder JMM 11012025*/
        background: url('../images/Galaxy-0314.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        border-radius: 20px;
        height: 400px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 4rem;
        color: white;
        box-shadow: 0 20px 40px rgba(139, 92, 246, 0.3);
      }

      /* Music Section */
      .music {
        padding: 6rem 0;
        background: var(--bg-card);
      }

      .section-header {
        text-align: center;
        margin-bottom: 4rem;
      }

      .section-header h2 {
        font-family: 'Playfair Display', serif;
        font-size: 3rem;
        color: var(--purple-400);
        margin-bottom: 1rem;
      }

      .section-header p {
        font-size: 1.2rem;
        color: var(--text-muted);
      }

      .album-player {
        max-width: 1000px;
        margin: 0 auto;
      }

      .music-player {
        background: var(--bg-dark);
        border-radius: 20px;
        padding: 2rem;
        margin-bottom: 2rem;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        border: 1px solid var(--purple-800);
      }

      .track-info {
        text-align: center;
        margin-bottom: 2rem;
      }

      .track-title {
        font-family: 'Playfair Display', serif;
        font-size: 2rem;
        color: var(--purple-300);
        margin-bottom: 0.5rem;
      }

      .track-artist {
        font-size: 1.1rem;
        color: var(--text-muted);
        margin-bottom: 0.5rem;
      }

      .track-number {
        font-size: 0.9rem;
        color: var(--purple-400);
      }

      .custom-audio-player {
        background: rgba(139, 92, 246, 0.1);
        border-radius: 15px;
        padding: 1.5rem;
        border: 1px solid var(--purple-700);
      }

      .progress-container {
        margin-bottom: 1.5rem;
      }

      .progress-bar {
        width: 100%;
        height: 6px;
        background: rgba(139, 92, 246, 0.2);
        border-radius: 3px;
        cursor: pointer;
        position: relative;
        margin-bottom: 0.5rem;
      }

      .progress-fill {
        height: 100%;
        background: var(--gradient-accent);
        border-radius: 3px;
        width: 0%;
        transition: width 0.1s ease;
      }

      .time-display {
        display: flex;
        justify-content: space-between;
        font-size: 0.9rem;
        color: var(--text-muted);
      }

      .controls {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1rem;
      }

      .control-btn {
        background: none;
        border: none;
        color: var(--purple-400);
        cursor: pointer;
        padding: 0.5rem;
        border-radius: 50%;
        transition: all 0.2s ease;
        font-size: 1.2rem;
      }

      .control-btn:hover {
        background: rgba(139, 92, 246, 0.2);
        color: var(--purple-300);
      }

      .play-btn {
        background: var(--gradient-accent);
        color: white;
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
      }

      .play-btn:hover {
        background: var(--gradient-primary);
      }

      /* Album Content - Track List and Lyrics */
      .album-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
      }

      .track-list {
        background: var(--bg-dark);
        border-radius: 15px;
        padding: 1.5rem;
        border: 1px solid var(--purple-800);
      }

      .track-list h3 {
        color: var(--purple-300);
        margin-bottom: 1rem;
        font-family: 'Playfair Display', serif;
      }

      .track-item {
        display: flex;
        align-items: center;
        padding: 0.75rem;
        margin-bottom: 0.5rem;
        border-radius: 8px;
        cursor: pointer;
        transition: all 0.2s ease;
        border: 1px solid transparent;
      }

      .track-item:hover {
        background: rgba(139, 92, 246, 0.1);
        border-color: var(--purple-700);
      }

      .track-item.active {
        background: var(--gradient-accent);
        color: white;
      }

      .track-number-small {
        width: 30px;
        text-align: center;
        font-weight: 600;
        color: var(--purple-400);
      }

      .track-item.active .track-number-small {
        color: white;
      }

      .track-name {
        flex: 1;
        font-weight: 500;
      }

      .track-duration {
        font-size: 0.9rem;
        color: var(--text-muted);
        font-variant-numeric: tabular-nums; /* modern browsers */
        font-feature-settings: 'tnum' 1, 'lnum' 1; /* fallback for older ones */
      }

      .track-item.active .track-duration {
        color: rgba(255, 255, 255, 0.8);
      }

      /* Lyrics Container */
      .lyrics-container {
        background: var(--bg-dark);
        border-radius: 15px;
        padding: 1.5rem;
        border: 1px solid var(--purple-800);
      }

      .lyrics-container h3 {
        color: var(--purple-300);
        margin-bottom: 1rem;
        font-family: 'Playfair Display', serif;
      }

      .lyrics-display {
        max-height: 695px;
        overflow-y: auto;
        line-height: 1.8;
      }

      .lyrics-prompt {
        color: var(--text-muted);
        text-align: center;
        font-style: italic;
        padding: 2rem;
      }

      .lyrics-text {
        color: var(--text-secondary);
        white-space: pre-line;
      }

      /* Contact Section */
      .contact {
        padding: 6rem 0;
        background: var(--bg-dark);
      }

      .contact-content {
        text-align: center;
        max-width: 600px;
        margin: 0 auto;
      }

      .social-links {
        display: flex;
        justify-content: center;
        gap: 2rem;
        margin-top: 2rem;
      }

      .social-links a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 50px;
        height: 50px;
        background: var(--gradient-accent);
        color: white;
        text-decoration: none;
        border-radius: 50%;
        transition: all 0.3s ease;
      }

      .social-links a:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(139, 92, 246, 0.3);
      }
      
      .email-signup {
    max-width: 600px;
    margin: 60px auto 40px;
    text-align: center;
    padding: 0 20px;
}

.email-signup h3 {
    font-family: 'Playfair Display', serif; /* Match existing headers */
    font-size: 2rem;
    color: #a78bfa; /* Theme Purple - Default=B8A0D6 BAD 01172026 JMM */
    margin-bottom: 12px;
}

.email-signup p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.0rem; /* Default=0.95 Small 01172026 JMM */
    margin-bottom: 24px;
    line-height: 1.5;
}

.signup-form {
    display: flex;
    gap: 12px;
    max-width: 480px;
    margin: 0 auto;
}

.signup-form input {
    flex: 1;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(180, 160, 214, 0.3);
    border-radius: 6px;
    color: #fff;
    font-size: 1rem;
}

.signup-form input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.signup-form input:focus {
    outline: none;
    border-color: #B8A0D6;
    background: rgba(255, 255, 255, 0.08);
}

.signup-form button {
    padding: 14px 32px;
    background: #D4AF37; /* Gold */
    color: #1a1a2e;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.signup-form button:hover {
    background: #FFD700;
    transform: translateY(-2px);
}

/* Mobile responsive */
@media (max-width: 600px) {
    .signup-form {
        flex-direction: column;
    }
    
    .signup-form button {
        width: 100%;
    }
}

      /* Footer */
      footer {
        background: var(--bg-card);
        padding: 2rem 0;
        text-align: center;
        border-top: 1px solid var(--purple-800);
      }

      .disclaimer {
        font-size: 0.9rem;
        color: var(--text-muted);
        margin-bottom: 1rem;
      }

      .disclaimer a {
        color: var(--purple-400);
        text-decoration: none;
      }

      /* Responsive Design */
      @media (max-width: 768px) {
        .nav-links {
          display: none;
        }

        .about-content {
          grid-template-columns: 1fr;
          gap: 2rem;
          text-align: center;
        }

        .about-text h2 {
          font-size: 2rem;
        }

        .section-header h2 {
          font-size: 2rem;
        }

        .album-content {
          grid-template-columns: 1fr;
        }

        .controls {
          gap: 0.5rem;
        }

        .social-links {
          gap: 1rem;
        }
      }

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

      .hero-content {
        animation: fadeInUp 1s ease-out;
      }