:root {
    /* Color Palette */
    --color-bg: #0a0a0a;
    --color-surface: #121212;
    --color-surface-hover: #1a1a1a;
    --color-primary: #d4af37;
    /* Metallic Gold */
    --color-primary-glow: rgba(212, 175, 55, 0.3);
    --color-accent: #e5e4e2;
    /* Platinum */
    --color-text: #ffffff;
    --color-text-muted: #a0a0a0;
    --color-border: rgba(255, 255, 255, 0.1);
    --color-danger: #e74c3c;
    --color-success: #2ecc71;

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;

    /* Transitions */
    --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Page Transition */
.page-fade {
    animation: pageFade 0.6s ease-out forwards;
}

@keyframes pageFade {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

h1,
h2,
h3,
h4,
.font-heading {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

/* Components */
.glass {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid var(--color-border);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

section {
    padding: var(--spacing-lg) 0;
}

/* Global Header Navigation */
header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
}

header .header-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

header .nav-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

header .nav-links-right {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

header nav ul li a {
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

header nav ul li a:hover {
    color: var(--color-primary);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    font-size: 0.8rem;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-bg);
}

.btn-primary:hover {
    background-color: #f1c40f;
    box-shadow: 0 0 20px var(--color-primary-glow);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--color-accent);
    color: var(--color-accent);
}

.btn-outline:hover {
    background-color: var(--color-accent);
    color: var(--color-bg);
    transform: translateY(-2px);
}

.btn-outline.active {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

/* Animation */
.fade-in {
    animation: fadeIn 1s ease-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Grid */
.grid {
    display: grid;
    gap: var(--spacing-md);
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 992px) {

    .grid-4,
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-2 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {

    .grid-4,
    .grid-3,
    .grid-2 {
        grid-template-columns: 1fr;
    }

    section {
        padding: var(--spacing-md) 0;
    }

    .episodes-section {
        padding: var(--spacing-sm) 0 var(--spacing-md) 0;
    }
}

/* Sections */
/* Intro Video Section */
.intro-video-section {
    position: relative;
    width: 100vw;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    background: var(--color-bg);
}

.intro-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
    z-index: 1;
}

.intro-video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    /* Gradient fading up from the bottom */
    background: linear-gradient(to top, var(--color-bg) 0%, transparent 100%);
    z-index: 2;
    pointer-events: none;
}

.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    text-align: center;
    background-image: url('../images/hero_background_v2.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.7) 0%, rgba(10, 10, 10, 0.9) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
}

.hero-actions {
    margin-top: var(--spacing-sm);
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.hero-actions .btn {
    padding: 0.6rem 1.5rem;
    font-size: 0.8rem;
}

.hero-title {
    font-family: 'Satisfy', cursive;
    font-size: clamp(2rem, 6vw, 4rem);
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
    text-transform: none;
    letter-spacing: 0;
    color: #fff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
    perspective: 1000px;
    animation: titleReveal3D 1.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    transform-style: preserve-3d;
}

@keyframes titleReveal3D {
    0% {
        opacity: 0;
        transform: translateZ(-200px) translateY(30px) rotateX(-45deg);
        filter: blur(15px);
    }

    60% {
        opacity: 0.8;
        filter: blur(5px);
    }

    100% {
        opacity: 1;
        transform: translateZ(0) translateY(0) rotateX(0);
        filter: blur(0);
    }
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-size: clamp(0.6rem, 1.2vw, 0.75rem);
    color: var(--color-primary);
    margin-bottom: var(--spacing-lg);
    max-width: 1000px;
    margin-inline: auto;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-weight: 600;
    opacity: 0.8;
}

.horizontal-scroll {
    display: flex;
    overflow-x: auto;
    gap: var(--spacing-md);
    padding: var(--spacing-md) 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.horizontal-scroll::-webkit-scrollbar {
    display: none;
}

.contestant-card {
    min-width: 320px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    overflow: hidden;
    scroll-snap-align: start;
    transition: var(--transition-smooth);
}

.contestant-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-primary);
}

.card-img {
    height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.card-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(18, 18, 18, 1), transparent);
}

.card-info {
    padding: var(--spacing-md);
}

.card-tag {
    font-size: 0.7rem;
    color: var(--color-primary);
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: block;
}

.step-card {
    padding: var(--spacing-md);
    background: var(--color-surface);
    border-radius: 8px;
    border-top: 2px solid transparent;
    transition: var(--transition-smooth);
}

.step-card:hover {
    border-top-color: var(--color-primary);
    background: var(--color-surface-hover);
}

.step-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-primary);
    opacity: 0.3;
    margin-bottom: var(--spacing-sm);
}

.spotlight-card {
    display: flex;
    background: var(--color-surface);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--color-border);
    transition: var(--transition-smooth);
}

.spotlight-img {
    width: 40%;
    background-size: cover;
    background-position: center;
}

.spotlight-content {
    flex: 1;
    padding: var(--spacing-md);
}

.rank-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--color-primary);
    color: var(--color-bg);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}

.label-card {
    background: var(--color-surface);
    padding: var(--spacing-md);
    border-radius: 8px;
    border: 1px solid var(--color-border);
    text-align: center;
    transition: var(--transition-smooth);
}

.label-logo {
    width: 80px;
    height: 80px;
    background: #000;
    border-radius: 12px;
    margin: 0 auto var(--spacing-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-weight: 800;
    border: 1px solid var(--color-border);
}

/* Dashboard */
.dashboard-container {
    display: flex;
    min-height: 100vh;
    padding-top: 80px;
}

.dashboard-sidebar {
    width: 280px;
    background: var(--color-surface);
    border-right: 1px solid var(--color-border);
    padding: var(--spacing-md);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.sidebar-link {
    padding: 12px 16px;
    border-radius: 6px;
    color: var(--color-text-muted);
    font-weight: 500;
}

.sidebar-link:hover,
.sidebar-link.active {
    background: var(--color-surface-hover);
    color: var(--color-primary);
}

.dashboard-content {
    flex: 1;
    padding: var(--spacing-lg);
    background: #080808;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.stat-item {
    background: var(--color-surface);
    padding: var(--spacing-md);
    border-radius: 8px;
    border: 1px solid var(--color-border);
}

table {
    width: 100%;
    border-collapse: collapse;
}

th {
    text-align: left;
    padding: 12px;
    border-bottom: 2px solid var(--color-border);
    color: var(--color-text-muted);
    font-size: 0.8rem;
}

td {
    padding: 16px 12px;
    border-bottom: 1px solid var(--color-border);
}

.badge {
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.badge-success {
    background: rgba(46, 204, 113, 0.2);
    color: #2ecc71;
}

.badge-warning {
    background: rgba(241, 196, 15, 0.2);
    color: #f1c40f;
}

/* Modals */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.modal-content {
    background: var(--color-surface);
    padding: var(--spacing-lg);
    border-radius: 12px;
    border: 1px solid var(--color-border);
    max-width: 500px;
    width: 90%;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--color-text-muted);
}

.input-group {
    margin-bottom: var(--spacing-md);
}

.input-group label {
    display: block;
    font-size: 0.8rem;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.input-group input,
.input-group select {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--color-border);
    padding: 0.8rem;
    color: #fff;
    border-radius: 4px;
}

/* Profile */
.profile-header {
    height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding-bottom: var(--spacing-lg);
}

.profile-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--color-bg));
}

.profile-main {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--spacing-lg);
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.video-container {
    aspect-ratio: 16 / 9;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--color-border);
}

.stats-card {
    background: var(--color-surface);
    padding: var(--spacing-md);
    border-radius: 8px;
    border: 1px solid var(--color-border);
    position: sticky;
    top: 100px;
}

/* CTA */
.cta-block {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('https://images.unsplash.com/photo-1470225620780-dba8ba36b745?auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-position: center;
    padding: var(--spacing-xl) 0;
    border-radius: 12px;
    text-align: center;
}

/* Mobile Menu Toggle */
.mobile-menu-btn {
    display: none;
    /* Hidden on desktop */
}

@media (max-width: 992px) {
    .profile-main {
        grid-template-columns: 1fr;
    }

    .stats-card {
        position: static;
    }

    .spotlight-card {
        flex-direction: column;
    }

    .spotlight-img {
        width: 100%;
        height: 250px;
    }

    header nav ul,
    header .nav-links,
    header .nav-links-right {
        display: none;
    }

    header .container {
        display: flex;
        justify-content: center;
    }

    /* Mobile Menu Toggle */
    .mobile-menu-btn {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        width: 30px;
        height: 24px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
        position: absolute;
        right: var(--spacing-md);
    }

    .mobile-menu-btn span {
        width: 30px;
        height: 2px;
        background: #fff;
        border-radius: 10px;
        transition: all 0.3s linear;
        position: relative;
        transform-origin: 1px;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
        transform: translateX(20px);
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg);
    }

    header nav {
        position: relative;
    }

    header .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100px;
        left: 0;
        width: 100%;
        background: rgba(10, 10, 10, 0.98);
        padding: var(--spacing-md);
        border-top: 1px solid var(--color-border);
        border-bottom: 1px solid var(--color-border);
        z-index: 1000;
    }

    header .nav-links.active li {
        width: 100%;
        text-align: center;
        padding: var(--spacing-sm) 0;
    }

    header .nav-links-right.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 360px;
        /* Below standard nav links */
        left: 0;
        width: 100%;
        background: rgba(10, 10, 10, 0.98);
        padding: 0 var(--spacing-md) var(--spacing-md);
        border-bottom: 1px solid var(--color-border);
        z-index: 1000;
        gap: var(--spacing-sm);
    }

    header .nav-links-right.active li {
        width: 100%;
        display: flex;
        justify-content: center;
    }
}

/* Cinematic Video Section */
.cinematic-video-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(to bottom, #0a0a0a, #050505);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.video-section-header {
    margin-bottom: var(--spacing-lg);
    z-index: 10;
    position: relative;
}

.video-section-header h2 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: var(--spacing-xs);
    background: linear-gradient(to bottom, #fff 0%, #d4af37 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 0.1em;
}

.video-section-header p {
    color: var(--color-text-muted);
    font-size: 1.2rem;
    font-weight: 500;
}

.cinematic-video-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    cursor: pointer;
    aspect-ratio: 16 / 9;
    border: 1px solid var(--color-border);
}

.video-overlay-simple {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 100%),
        rgba(10, 10, 10, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.4s ease;
}

.play-button-inner {
    width: 60px;
    height: 60px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: scale(0.9);
    opacity: 0;
}

.play-button-inner.large {
    width: 90px;
    height: 90px;
}

.play-button-inner svg {
    width: 30px;
    height: 30px;
    margin-left: 3px;
}

.play-button-inner.large svg {
    width: 40px;
    height: 40px;
}

.episode-card:hover .play-button-inner,
.cinematic-video-container:hover .play-button-inner {
    transform: scale(1.1);
    background: #fff;
    opacity: 1;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.4);
}

.cinematic-video-container:hover .video-thumbnail-wrapper {
    transform: scale(1.05);
}

.cinematic-video-container:hover .video-overlay-simple {
    background: rgba(10, 10, 10, 0.4);
}

/* Video Modal */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 5, 5, 0.95);
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-md);
    animation: modalFadeIn 0.4s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.video-modal-content {
    width: 100%;
    max-width: 1200px;
    aspect-ratio: 16 / 9;
    position: relative;
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
}

.video-modal-content iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.video-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    color: var(--color-primary);
    font-size: 2rem;
    cursor: pointer;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
}

.video-modal-close:hover {
    transform: scale(1.1);
    color: #fff;
}

body.modal-open #videoModal~* {
    filter: blur(8px);
    transition: filter 0.3s ease;
}

/* Adjusting modal background to be more atmospheric */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-md);
    animation: modalFadeIn 0.4s ease;
}

@media (max-width: 768px) {
    .video-modal-close {
        top: -40px;
        right: 10px;
        font-size: 1.5rem;
    }
}

/* Episodes Grid (Season 9 Style) */
.episodes-section {
    padding: var(--spacing-md) 0 var(--spacing-lg) 0;
    background-color: #000;
}

.episodes-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: var(--spacing-md);
    border-bottom: 2px solid #1a1a1a;
    padding-bottom: 10px;
}

.episodes-header h2 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    letter-spacing: 2px;
    color: #fff;
    margin: 0;
    text-transform: uppercase;
}

.see-all-link {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.see-all-link:hover {
    color: var(--color-primary);
}

.episodes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.episode-card {
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-radius: 16px;
    overflow: hidden;
    background: #111;
    border: 1px solid var(--color-border);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.episode-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.5);
    border-color: rgba(212, 175, 55, 0.4);
}

.episode-thumbnail-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.episode-thumbnail-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.episode-card:hover .episode-thumbnail-container img {
    transform: scale(1.08);
}

.episode-info-minimal {
    padding: 12px;
    text-align: center;
    background: #0d0d0d;
}

.episode-info-minimal span {
    font-size: 0.8rem;
    color: var(--color-primary);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
}

.text-white {
    color: #ffffff !important;
}

@media (max-width: 1024px) {
    .episodes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .episodes-grid {
        grid-template-columns: 1fr;
    }
}

/* Modals */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    padding: var(--spacing-md);
}

.video-modal-content {
    position: relative;
    width: 100%;
    max-width: 1000px;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.video-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.video-modal-close:hover {
    color: var(--color-primary);
}

#videoPlayer {
    width: 100%;
    aspect-ratio: 16 / 9;
    border: none;
    display: block;
}

body.modal-open {
    overflow: hidden;
}

/* Premium Journey Section */
.premium-journey-section {
    padding: 60px 0;
    background: #050505;
    position: relative;
    overflow: hidden;
    color: #fff;
    border-top: 1px solid rgba(212, 175, 55, 0.05);
    border-bottom: 1px solid rgba(212, 175, 55, 0.05);
}

.premium-journey-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.03) 0%, transparent 70%);
    animation: slowRotate 30s linear infinite;
    pointer-events: none;
}

@keyframes slowRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.journey-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-xl);
    position: relative;
    z-index: 2;
}

.journey-left {
    flex: 1;
    text-align: left;
}

.journey-heading {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    margin-bottom: var(--spacing-xs);
    line-height: 1.1;
    background: linear-gradient(to bottom, #fff 0%, var(--color-primary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.journey-subtext {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: var(--spacing-md);
    max-width: 450px;
}

.journey-right {
    flex: 1.2;
}

.journey-card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
}

.journey-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: var(--spacing-md);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: floatCard 6s ease-in-out infinite;
}

.journey-card:nth-child(even) {
    animation-delay: -3s;
}

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.journey-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--color-primary);
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(212, 175, 55, 0.15);
}

.card-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    transition: all 0.3s ease;
}

.journey-card:hover .card-icon {
    transform: rotate(10deg) scale(1.1);
    background: var(--color-primary);
    color: #000;
    box-shadow: 0 0 15px var(--color-primary-glow);
}

.journey-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    margin: 0;
}

.card-description {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 992px) {
    .journey-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .journey-left {
        text-align: center;
        margin-bottom: var(--spacing-xl);
    }

    .journey-subtext {
        margin-inline: auto;
    }
}

@media (max-width: 600px) {
    .journey-card-grid {
        grid-template-columns: 1fr;
    }

    .journey-heading {
        font-size: 2.5rem;
    }
}