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

        :root {
            --primary-purple: #9b7bb8;
            --light-purple: #c4a8d9;
            --dark-purple: #6b4d82;
            --black: #0a0a0a;
            --dark-bg: #121212;
            --card-bg: #1a1a1a;
            --text-light: #f5f5f5;
            --text-muted: #a0a0a0;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--black);
            color: var(--text-light);
            line-height: 1.6;
        }

        body.has-player {
            padding-bottom: 92px;
        }

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

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

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

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-40px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(40px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .animate-fade-up {
            opacity: 0;
            animation: fadeInUp 0.8s ease forwards;
        }

        .animate-fade {
            opacity: 0;
            animation: fadeIn 0.6s ease forwards;
        }

        .animate-scale {
            opacity: 0;
            animation: scaleIn 0.6s ease forwards;
        }

        .animate-slide-left {
            opacity: 0;
            animation: slideInLeft 0.7s ease forwards;
        }

        .animate-slide-right {
            opacity: 0;
            animation: slideInRight 0.7s ease forwards;
        }

        .delay-1 { animation-delay: 0.1s; }
        .delay-2 { animation-delay: 0.2s; }
        .delay-3 { animation-delay: 0.3s; }
        .delay-4 { animation-delay: 0.4s; }
        .delay-5 { animation-delay: 0.5s; }
        .delay-6 { animation-delay: 0.6s; }
        .delay-7 { animation-delay: 0.7s; }
        .delay-8 { animation-delay: 0.8s; }
        .delay-9 { animation-delay: 0.9s; }
        .delay-10 { animation-delay: 1s; }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            padding: 1.5rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: rgba(10, 10, 10, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            border-bottom: 1px solid rgba(155, 123, 184, 0.1);
        }

        .logo {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--primary-purple);
            text-decoration: none;
        }

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

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

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

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 8rem 5% 4rem;
            background: 
                linear-gradient(135deg, rgba(10, 10, 10, 0.85) 0%, rgba(26, 16, 37, 0.75) 50%, rgba(10, 10, 10, 0.85) 100%),
                url('photos/backgorund.png');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(155, 123, 184, 0.25) 0%, transparent 70%);
            pointer-events: none;
        }

        .hero-content {
            text-align: center;
            max-width: 800px;
            z-index: 1;
        }

        .hero-subtitle {
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 3px;
            color: var(--primary-purple);
            margin-bottom: 1.5rem;
        }

        .hero-title {
            font-family: 'Playfair Display', serif;
            font-size: 4rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            line-height: 1.1;
        }

        .hero-title span {
            color: var(--primary-purple);
        }

        .hero-description {
            font-size: 1.1rem;
            color: var(--text-muted);
            margin-bottom: 2.5rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn {
            padding: 1rem 2rem;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .btn-primary {
            background: var(--primary-purple);
            color: var(--black);
        }

        .btn-primary:hover {
            background: var(--light-purple);
            transform: translateY(-2px);
        }

        .btn-secondary {
            background: transparent;
            color: var(--text-light);
            border: 1px solid rgba(155, 123, 184, 0.5);
        }

        .btn-secondary:hover {
            border-color: var(--primary-purple);
            background: rgba(155, 123, 184, 0.1);
        }

        /* Platform Links */
        .platforms {
            padding: 5rem 5%;
            background: var(--dark-bg);
        }

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

        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .section-subtitle {
            color: var(--text-muted);
            font-size: 1rem;
        }

        .platform-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
            max-width: 1000px;
            margin: 0 auto;
        }

        .platform-card {
            background: var(--card-bg);
            padding: 2rem;
            border-radius: 16px;
            display: flex;
            align-items: center;
            gap: 1.5rem;
            text-decoration: none;
            transition: all 0.3s ease;
            border: 1px solid rgba(155, 123, 184, 0.1);
        }

        .platform-card:hover {
            transform: translateY(-5px);
            border-color: var(--primary-purple);
            box-shadow: 0 20px 40px rgba(155, 123, 184, 0.1);
        }

        .platform-icon {
            width: 60px;
            height: 60px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
        }

        .platform-icon.spotify {
            background: #1DB954;
        }

        .platform-icon.apple {
            background: linear-gradient(135deg, #fc3c44, #8e44ad);
        }

        .platform-icon.website {
            background: var(--primary-purple);
        }

        .platform-info h3 {
            font-size: 1.1rem;
            margin-bottom: 0.25rem;
            color: var(--text-light);
        }

        .platform-info p {
            font-size: 0.85rem;
            color: var(--text-muted);
        }

        /* Episodes Section */
        .episodes {
            padding: 5rem 5%;
            background: var(--black);
        }

        .episode-list {
            max-width: 900px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .episode-card {
            background: var(--card-bg);
            border-radius: 16px;
            padding: 2rem;
            display: grid;
            grid-template-columns: auto 1fr auto;
            gap: 1.5rem;
            align-items: center;
            border: 1px solid rgba(155, 123, 184, 0.1);
            transition: all 0.3s ease;
        }

        .episode-card:hover {
            border-color: var(--primary-purple);
        }

        .episode-number {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            color: var(--primary-purple);
            font-weight: 700;
            min-width: 60px;
        }

        .episode-info h3 {
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
        }

        .episode-info p {
            color: var(--text-muted);
            font-size: 0.9rem;
            margin-bottom: 0.75rem;
        }

        .episode-meta {
            display: flex;
            gap: 1.5rem;
            font-size: 0.8rem;
            color: var(--text-muted);
        }

        .play-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--primary-purple);
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .play-btn:hover {
            background: var(--light-purple);
            transform: scale(1.1);
        }

        .play-btn svg {
            width: 20px;
            height: 20px;
            fill: var(--black);
            margin-left: 3px;
        }

        /* Audio Player */
        .audio-player {
            margin-top: 1.5rem;
            display: none;
        }

        .audio-player.active {
            display: block;
        }

        .audio-player audio {
            width: 100%;
            height: 40px;
            border-radius: 20px;
        }

        /* Bottom Player Bar */
        .player-bar {
            position: fixed;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 2000;
            transform: translateY(110%);
            transition: transform 220ms ease;
            background: rgba(10, 10, 10, 0.96);
            backdrop-filter: blur(12px);
            border-top: 1px solid rgba(155, 123, 184, 0.18);
        }

        .player-bar.active {
            transform: translateY(0);
        }

        .player-inner {
            padding: 0.9rem 5%;
            display: grid;
            grid-template-columns: 1fr auto;
            gap: 1rem;
            align-items: center;
            max-width: 1100px;
            margin: 0 auto;
        }

        .player-meta {
            display: flex;
            align-items: center;
            gap: 0.9rem;
            min-width: 0;
        }

        .player-badge {
            width: 42px;
            height: 42px;
            border-radius: 12px;
            background: linear-gradient(135deg, var(--dark-purple), var(--primary-purple));
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            color: var(--text-light);
            flex: 0 0 auto;
        }

        .player-text {
            min-width: 0;
        }

        .player-title {
            font-size: 0.95rem;
            font-weight: 600;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .player-subtitle {
            font-size: 0.8rem;
            color: var(--text-muted);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            margin-top: 0.15rem;
        }

        .player-controls {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .player-controls audio {
            display: none;
        }

        .player-toggle {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            background: var(--primary-purple);
            border: none;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s ease;
            color: var(--black);
            flex: 0 0 auto;
        }

        .player-toggle:hover {
            background: var(--light-purple);
            transform: translateY(-1px);
        }

        .player-toggle svg {
            width: 18px;
            height: 18px;
            fill: currentColor;
        }

        .player-timeline {
            display: grid;
            grid-template-columns: auto 1fr auto;
            align-items: center;
            gap: 0.6rem;
            width: min(520px, 46vw);
            min-width: 220px;
        }

        .player-time {
            font-variant-numeric: tabular-nums;
            font-size: 0.8rem;
            color: var(--text-muted);
            width: 44px;
            text-align: center;
        }

        .player-seek,
        .player-volume input[type="range"] {
            -webkit-appearance: none;
            appearance: none;
            height: 8px;
            border-radius: 999px;
            background: rgba(155, 123, 184, 0.22);
            outline: none;
        }

        .player-seek::-webkit-slider-thumb,
        .player-volume input[type="range"]::-webkit-slider-thumb {
            -webkit-appearance: none;
            appearance: none;
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: var(--primary-purple);
            border: 2px solid rgba(10, 10, 10, 0.65);
            box-shadow: 0 0 0 3px rgba(155, 123, 184, 0.12);
            cursor: pointer;
        }

        .player-seek::-moz-range-thumb,
        .player-volume input[type="range"]::-moz-range-thumb {
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: var(--primary-purple);
            border: 2px solid rgba(10, 10, 10, 0.65);
            cursor: pointer;
        }

        .player-volume {
            display: flex;
            align-items: center;
            gap: 0.4rem;
            flex: 0 0 auto;
        }

        .player-icon-btn {
            width: 40px;
            height: 40px;
            border-radius: 12px;
            background: var(--card-bg);
            border: 1px solid rgba(155, 123, 184, 0.18);
            color: var(--text-muted);
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s ease;
        }

        .player-icon-btn:hover {
            border-color: var(--primary-purple);
            color: var(--text-light);
        }

        .player-icon-btn svg {
            width: 18px;
            height: 18px;
            fill: currentColor;
        }

        .player-volume input[type="range"] {
            width: 96px;
        }

        .player-close {
            width: 42px;
            height: 42px;
            border-radius: 12px;
            background: var(--card-bg);
            border: 1px solid rgba(155, 123, 184, 0.18);
            color: var(--text-muted);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s ease;
        }

        .player-close:hover {
            border-color: var(--primary-purple);
            color: var(--text-light);
        }

        /* About Section */
        .about {
            padding: 5rem 5%;
            background: linear-gradient(180deg, var(--dark-bg) 0%, var(--black) 100%);
        }

        .about-content {
            max-width: 800px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 3rem;
            align-items: center;
        }

        .about-image {
            width: 100%;
            aspect-ratio: 1;
            border-radius: 20px;
            background: linear-gradient(135deg, var(--dark-purple), var(--primary-purple));
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Playfair Display', serif;
            font-size: 4rem;
            color: var(--text-light);
        }

        .about-text h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            margin-bottom: 1rem;
        }

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

        /* Footer */
        footer {
            padding: 3rem 5%;
            background: var(--black);
            border-top: 1px solid rgba(155, 123, 184, 0.1);
            text-align: center;
        }

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

        .social-links a {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: var(--card-bg);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-muted);
            text-decoration: none;
            transition: all 0.3s ease;
            border: 1px solid rgba(155, 123, 184, 0.1);
        }

        .social-links a:hover {
            background: var(--primary-purple);
            color: var(--black);
        }

        .footer-text {
            color: var(--text-muted);
            font-size: 0.85rem;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }

            .nav-links {
                display: none;
            }

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

            .about-image {
                max-width: 250px;
                margin: 0 auto;
            }

            .episode-card {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .episode-number {
                margin: 0 auto;
            }

            .play-btn {
                margin: 0 auto;
            }

            .player-inner {
                grid-template-columns: 1fr;
            }

            .player-controls {
                justify-content: center;
                flex-wrap: wrap;
            }

            .player-timeline {
                width: 100%;
                min-width: 0;
            }

            .player-volume input[type="range"] {
                width: 120px;
            }
        }

        /* ===== ABOUT PAGE STYLES ===== */

        .about-hero {
            min-height: 50vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 8rem 5% 4rem;
            background: linear-gradient(135deg, var(--black) 0%, #1a1025 50%, var(--black) 100%);
            position: relative;
            text-align: center;
        }

        .about-hero::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(155, 123, 184, 0.2) 0%, transparent 70%);
            pointer-events: none;
        }

        .about-hero-content {
            z-index: 1;
        }

        .nav-links a.active {
            color: var(--primary-purple);
        }

        .about-main {
            background: var(--black);
        }

        .about-grid {
            max-width: 1000px;
            margin: 0 auto;
            padding: 5rem 5%;
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 4rem;
            align-items: start;
        }

        .about-photo {
            position: sticky;
            top: 100px;
        }

        .photo-placeholder {
            width: 100%;
            aspect-ratio: 1;
            border-radius: 20px;
            background: linear-gradient(135deg, var(--dark-purple), var(--primary-purple));
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Playfair Display', serif;
            font-size: 6rem;
            color: var(--text-light);
            box-shadow: 0 20px 60px rgba(155, 123, 184, 0.2);
        }

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

        .about-bio p {
            color: var(--text-muted);
            margin-bottom: 1.5rem;
            line-height: 1.9;
            font-size: 1.05rem;
        }

        .about-section {
            padding: 4rem 5%;
        }

        .about-section.alt-bg {
            background: var(--dark-bg);
        }

        .about-section-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .about-section-content h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            margin-bottom: 1.5rem;
            text-align: center;
            color: var(--text-light);
        }

        .about-section-content p {
            color: var(--text-muted);
            margin-bottom: 1.5rem;
            line-height: 1.9;
            font-size: 1.05rem;
            text-align: center;
        }

        .beliefs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .belief-card {
            background: var(--card-bg);
            padding: 2rem;
            border-radius: 16px;
            text-align: center;
            border: 1px solid rgba(155, 123, 184, 0.1);
            transition: all 0.3s ease;
        }

        .belief-card:hover {
            border-color: var(--primary-purple);
            transform: translateY(-5px);
        }

        .belief-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .belief-card h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.2rem;
            margin-bottom: 0.75rem;
            color: var(--primary-purple);
        }

        .belief-card p {
            color: var(--text-muted);
            font-size: 0.9rem;
            line-height: 1.7;
        }

        .featured-quote {
            background: linear-gradient(135deg, rgba(155, 123, 184, 0.1), rgba(107, 77, 130, 0.1));
            padding: 2.5rem;
            border-radius: 16px;
            border-left: 4px solid var(--primary-purple);
            margin: 2rem 0;
            font-family: 'Playfair Display', serif;
            font-size: 1.3rem;
            font-style: italic;
            color: var(--text-light);
            text-align: left;
            line-height: 1.8;
        }

        .featured-quote cite {
            display: block;
            margin-top: 1rem;
            font-size: 1rem;
            color: var(--primary-purple);
            font-style: normal;
        }

        .signature {
            text-align: center;
            margin-top: 2rem;
            font-size: 1.1rem;
            color: var(--text-muted);
        }

        .signature-name {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            color: var(--primary-purple);
            display: block;
            margin-top: 0.5rem;
        }

        .about-cta {
            text-align: center;
            padding: 5rem 5%;
            background: linear-gradient(180deg, var(--black) 0%, var(--dark-bg) 100%);
        }

        .about-cta h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .about-cta p {
            color: var(--text-muted);
            margin-bottom: 2rem;
            font-size: 1.1rem;
        }

        @media (max-width: 768px) {
            .about-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .about-photo {
                position: static;
                max-width: 280px;
                margin: 0 auto;
            }

            .about-bio {
                text-align: center;
            }

            .featured-quote {
                padding: 1.5rem;
                font-size: 1.1rem;
            }

            .about-hero {
                min-height: 40vh;
            }
        }