/* style.css */
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400;500;600;700&family=Outfit:wght@400;700;800&display=swap');

html {
    scroll-behavior: smooth;
}

:root {
    --bg-color: #050505;
    --accent-color: #6c63ff; /* Premiere-inspired indigo */
    --accent-glow: rgba(108, 99, 255, 0.4);
    --text-color: #e5e7eb;
    --text-muted: #9ca3af;
    --card-bg: #0c0c0c;
    --card-border: rgba(255, 255, 255, 0.05);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --container-width: 1200px;
}

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

/* Preserve circles only where the shape communicates identity or status. */
.avatar,
.support-avatar,
.avatar-count,
.reviewer-profile-link,
.release-marker,
.blob,
input[type="radio"],
input[type="checkbox"] {
    border-radius: 50% !important;
}

/* Suppress native controls only on decorative autoplay videos. */
video:not([controls])::-webkit-media-controls            { display: none !important; }
video:not([controls])::-webkit-media-controls-enclosure  { display: none !important; }
video:not([controls])::-webkit-media-controls-panel      { display: none !important; }
video:not([controls])::-webkit-media-controls-play-button { display: none !important; }
video:not([controls])::-webkit-media-controls-overlay-cast-button { display: none !important; }
video:not([controls])::--webkit-media-controls-timeline  { display: none !important; }

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'IBM Plex Mono', 'Courier New', monospace;
    letter-spacing: 0.15px;
    line-height: 1.6;
    overflow-x: hidden;
}

button,
input,
textarea,
select {
    font-family: inherit;
}

/* Top ambient light */
.video-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 118vh;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 80% 52% at 50% -12%, rgba(108, 99, 255, 0.62) 0%, rgba(79, 70, 229, 0.34) 34%, rgba(108, 99, 255, 0.08) 62%, transparent 78%),
        linear-gradient(180deg, rgba(108, 99, 255, 0.22) 0%, rgba(79, 70, 229, 0.08) 42%, rgba(79, 70, 229, 0.025) 72%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 76%, transparent 100%);
    mask-image: linear-gradient(to bottom, #000 0%, #000 76%, transparent 100%);
}

.video-bg-container::before {
    content: '';
    position: absolute;
    top: -26vh;
    left: 50%;
    width: min(1200px, 92vw);
    height: 62vh;
    transform: translateX(-50%);
    background: radial-gradient(ellipse at center, rgba(167, 153, 255, 0.7) 0%, rgba(108, 99, 255, 0.36) 28%, rgba(67, 56, 202, 0.08) 64%, transparent 76%);
    filter: blur(28px);
    opacity: 0.9;
}

.video-bg-container::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(105deg, transparent 12%, rgba(124, 108, 255, 0.11) 36%, transparent 58%),
        linear-gradient(255deg, transparent 18%, rgba(67, 56, 202, 0.12) 44%, transparent 68%),
        linear-gradient(180deg, rgba(5, 5, 5, 0) 0%, rgba(5, 5, 5, 0.55) 82%, #050505 100%);
    mix-blend-mode: screen;
    opacity: 0.78;
}

.seam-hider {
    position: absolute;
    top: 98vh;
    left: 0;
    width: 100%;
    height: 42vh;
    transform: translateY(-50%);
    background: linear-gradient(to bottom, transparent 0%, rgba(5, 5, 5, 0.34) 48%, transparent 100%);
    z-index: 0;
    pointer-events: none;
}

/* Subtle dotted background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(
        circle,
        rgba(143, 136, 255, 0.24) 1px,
        transparent 1.4px
    );
    background-size: 48px 48px;
    background-position: 0 0;
    z-index: -1;
    pointer-events: none;
    opacity: 0.72;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.hero.container {
    max-width: 1600px; /* Expanded for 16:9 video */
}

header {
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 10;
}

.logo img {
    filter: none;
    transition: transform 0.3s ease;
}

.logo a:hover img {
    transform: scale(1.1);
}

.logo {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 24px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #f5b21b;
}

header nav {
    display: flex;
    align-items: center;
    background: rgba(8, 8, 8, 0.65);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 12px 32px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

nav a {
    color: #ffffff;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.9);
    text-decoration: none;
    margin-left: 30px;
    font-size: 14px;
    font-weight: 700;
    opacity: 0.85;
    transition: all 0.3s ease;
}

nav a:first-child {
    margin-left: 0;
}

nav a:hover {
    opacity: 1;
    color: var(--accent-color);
    text-shadow: 0 0 10px rgba(108, 99, 255, 0.5);
}

nav a[aria-current="page"] {
    opacity: 1;
    color: var(--accent-color);
}

/* Ecosystem Link Badge */
.nav-eco-link {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.free-badge {
    position: absolute;
    top: 35px; /* Below the link */
    left: 50%;
    transform: translateX(-50%);
    background: #8f88ff;
    color: #000;
    font-size: 14px; /* Much larger */
    font-weight: 900;
    padding: 6px 14px;
    border-radius: 8px;
    white-space: nowrap;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(143, 136, 255, 0.6);
    animation: badge-float-rev 2.5s infinite ease-in-out;
    pointer-events: none;
    line-height: 1;
    z-index: 1000;
    opacity: 1 !important; /* Force no opacity */
    border: 2px solid #000;
}

.free-badge::after {
    content: '';
    position: absolute;
    top: -10px; /* Arrow at top pointing up */
    left: 50%;
    transform: translateX(-50%);
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #8f88ff;
    border-top: none;
}

@keyframes badge-float-rev {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

main {
    padding-top: 60px;
}

.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    padding: 60px 0;
    position: relative;
    z-index: 1;
}

.hero-content-wrapper {
    display: flex;
    align-items: stretch; /* Match height of card and video precisely */
    justify-content: center;
    gap: 24px;
    width: 100%;
}

.hero-card-column {
    flex: 0 0 520px; /* Expanded further to accommodate much larger headline text */
}

.hero-video-column {
    flex: 1; /* Expand horizontally to maintain ratio */
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.hero-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    backdrop-filter: blur(10px);
    padding: 36px;
    border-radius: 24px;
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent-color);
}

.full-width-bg {
    width: 100%;
    background: rgba(12, 12, 12, 0.9);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    position: relative;
    margin-top: 80px;
    margin-bottom: 40px;
}


.support-badge {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: rgba(108, 99, 255, 0.05);
    border: 1px solid rgba(108, 99, 255, 0.15);
    padding: 10px 20px;
    border-radius: 100px;
    margin-bottom: 30px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    text-decoration: none;
}

.support-badge:hover {
    background: rgba(108, 99, 255, 0.1);
    border-color: var(--accent-color);
    transform: translateX(8px);
    box-shadow: 0 0 30px rgba(108, 99, 255, 0.1);
}

.support-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--accent-color);
    object-fit: cover;
    box-shadow: 0 0 15px rgba(108, 99, 255, 0.3);
}

.support-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.support-label {
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 4px;
}

.support-name {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-color);
    line-height: 1;
}

.hero-icon {
    font-size: 32px;
    color: var(--accent-color);
    margin-bottom: 24px;
}

h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 42px; /* Increased for a more premium, impactful look */
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
}

h1 span {
    background: linear-gradient(90deg, #6c63ff, #8f88ff, #4f46e5, #6c63ff);
    background-size: 300% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: gradientFlow 5s linear infinite;
    display: inline-block; 
    white-space: nowrap; 
    font-size: 48px; /* Increased significantly as requested */
}

/* Mobile: allow h1 span to wrap so it doesn't overflow screen */
@media (max-width: 768px) {
    h1 span {
        white-space: normal;
        font-size: 34px;
    }
}
@media (max-width: 480px) {
    h1 span {
        font-size: 28px;
    }
}

/* Word Rotation Animation */
.word-rotate {
    display: inline-block;
    position: relative;
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.2, 1, 0.3, 1);
    min-width: 240px; /* Increased to accommodate the 48px font size */
}

@media (max-width: 768px) {
    .word-rotate {
        min-width: 0; /* Let it size naturally on mobile */
        display: block;
    }
}

.word-rotate.exit {
    opacity: 0;
    transform: translateY(-15px);
}

.word-rotate.enter {
    opacity: 0;
    transform: translateY(15px);
    transition: none;
}

@keyframes gradientFlow {
    0% { background-position: 0% center; }
    100% { background-position: 300% center; }
}

.hero-card p {
    color: var(--text-muted);
    font-size: 13px; /* Reduced from 14px */
    margin-bottom: 40px;
    max-width: 600px;
}

.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #ffffff;
    color: #000000;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    white-space: nowrap;
    transition: transform 0.3s, background-color 0.3s;
}

.btn-download:hover {
    transform: translateY(-2px);
    background-color: var(--accent-color);
}

.category-section {
    margin-bottom: 40px;
}

.category-title {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.category-title::after {
    content: '';
    width: 0;
    height: 0;
}

.section-divider {
    text-align: center;
    margin: 0 0 60px 0;
}

.section-divider h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    letter-spacing: 5px;
    color: var(--accent-color);
    text-transform: uppercase;
    margin: 8px 0;
}

.section-divider .line {
    width: 2px;
    height: 30px;
    background: linear-gradient(to bottom, transparent 0%, var(--accent-color) 40%, var(--accent-color) 60%, transparent 100%);
    margin: 0 auto;
    opacity: 0.8;
}

.feature-row {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-bottom: 60px;
}

.feature-row.reverse {
    flex-direction: row-reverse;
}

.feature-visual {
    flex: 1;
    position: relative;
}

.feature-content {
    flex: 1;
}

.neon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    filter: blur(40px);
    z-index: -1;
    opacity: 0.5;
}

.feature-image {
    width: 100%;
    border-radius: 20px;
    border: 1px solid var(--card-border);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    background: #111;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.feature-row:hover .feature-image {
    transform: translateY(-10px) scale(1.02);
}

.feature-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--card-border);
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 24px;
}

.feature-badge .dot {
    width: 6px;
    height: 6px;
    background: var(--accent-color);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-color);
}

.feature-content h3 {
    font-size: 48px;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

.feature-content p {
    font-size: 18px;
    color: var(--text-muted);
    border-left: 2px solid var(--accent-glow);
    padding-left: 24px;
    margin-bottom: 32px;
}

.feature-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.feature-list li {
    font-family: monospace;
    font-size: 13px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-list li span {
    color: var(--accent-color);
    font-weight: bold;
}

footer {
    padding: 60px 0;
    text-align: center;
    border-top: 1px solid var(--card-border);
    margin-top: 40px;
}

footer p {
    color: var(--text-muted);
    font-size: 12px;
    letter-spacing: 1px;
}

/* Coming Soon Badge */
.coming-soon {
    display: inline-block;
    background: #f5b21b;
    color: #111018;
    padding: 6px 14px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 0 15px rgba(245, 178, 27, 0.35);
    position: absolute;
    top: -25px; /* Above price */
    left: 50%;
    transform: translateX(-50%); /* Properly center even if text length changes */
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
}

#dealTimer {
    font-family: 'Outfit', sans-serif;
    background: #fff;
    padding: 2px 8px;
    border-radius: 6px;
    font-size: 11px;
    color: #111018;
    margin-left: 6px;
    border: 1px solid rgba(17, 16, 24, 0.12);
}

[hidden] {
    display: none !important;
}

.bounce-anim {
    animation: promo-bounce 2s infinite ease-in-out;
}

@keyframes promo-bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-8px); }
}

/* Background Blobs */
.bg-blobs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
    pointer-events: none;
}

.blob {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 216, 77, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.blob-1 {
    top: -200px;
    right: -200px;
}

.blob-2 {
    bottom: -200px;
    left: -200px;
}

@media (max-width: 768px) {
    h1 {
        font-size: 40px;
    }
    .hero-card {
        padding: 55px 30px 30px 30px;
    }
}

/* Pricing & Action Styles */
.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 50px;
    align-items: center;
}

.main-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    width: 100%;
}

@media (max-width: 768px) {
    .main-actions {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
}

.price-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 0;
    position: relative; /* relative for absolute badge */
    min-width: 230px; /* Restricts the layout from collapsing despite shorter $$$ placeholder */
}

.price-strikethrough {
    font-size: 24px;
    color: var(--text-muted);
    text-decoration: line-through;
    font-weight: 600;
}

.price-current {
    font-size: 36px;
    color: #fff;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
}

.discount-code {
    font-size: 14px;
    color: var(--text-muted);
    margin: 20px auto 0 auto; /* Added auto margins for centering */
    text-align: center;
    background: rgba(108, 99, 255, 0.03);
    border: 1px dashed rgba(108, 99, 255, 0.2);
    padding: 12px 24px;
    border-radius: 12px;
    display: flex; /* Changed from inline-flex to flex */
    width: fit-content; /* Ensure it only takes needed width */
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    user-select: none;
}

.discount-code:hover {
    background: rgba(108, 99, 255, 0.08);
    border-color: rgba(108, 99, 255, 0.5);
    transform: translateY(-2px);
    color: var(--text-color);
}

.discount-code.copied {
    border-style: solid;
    border-color: #4ade80; /* green */
    background: rgba(74, 222, 128, 0.1);
    color: #4ade80;
}

.code-highlight {
    color: var(--accent-color);
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    letter-spacing: 1px;
    background: rgba(108, 99, 255, 0.1);
    padding: 4px 10px;
    border-radius: 6px;
    border: 1px solid rgba(108, 99, 255, 0.2);
    animation: code-pulse 2s infinite;
    pointer-events: none; /* so click hits the box */
}

@keyframes code-pulse {
    0% { box-shadow: 0 0 0 0 rgba(108, 99, 255, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(108, 99, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(108, 99, 255, 0); }
}

/* Features Dual Layout (3+1 Grid) */
.features-dual-layout {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Changed to 3 columns to center containers */
    grid-auto-rows: 1fr; /* Perfect row symmetry */
    gap: clamp(10px, 1.17vw, 30px); 
    margin-bottom: 60px; /* Perfectly balanced separation */
    align-items: center; 
    width: clamp(300px, 72vw, 1750px); /* Restored original width */
    padding: 0;
    margin: 0 auto 60px; /* Centered with perfectly balanced bottom margin */
    zoom: 0.84; /* Escala global ajustada a un tamaño 14% mayor que el ensayo anterior (84% del original) */
}

/* 1080p Optimization - Shrink cards globally to allow them to match video height without text-wrap bloat */
@media (max-width: 1950px) {
    .features-dual-layout {
        width: 85vw; /* Restored original width */
        grid-template-columns: repeat(3, 1fr); /* Changed to 3 columns */
        gap: 15px;
    }
    .feature-card {
        padding: 16px 18px !important;
    }
    .feature-card h4 {
        font-size: 16.5px !important;
        margin-bottom: 10px !important;
    }
    .feature-card ul {
        font-size: 11.5px !important;
    }
    .feature-card ul li {
        margin-bottom: 6px !important;
        gap: 8px !important;
    }
    .dual-column-list {
        column-gap: 10px !important;
    }
}

@media (max-width: 1600px) {
    .features-dual-layout {
        width: 92vw; 
        grid-template-columns: repeat(3, 1fr); 
        gap: 15px;
        padding: 0 20px;
    }
}

/* --- TRANSLATION LAYOUT FIXES (DYNAMO-SCALE) --- */
/* These rules trigger when the browser translates the page, preventing English-optimized layouts from breaking */
html[lang]:not([lang="en"]) .features-dual-layout,
html.translated-ltr .features-dual-layout, 
html.translated-rtl .features-dual-layout,
html[_mstlang] .features-dual-layout {
    grid-template-columns: repeat(3, 1fr) !important; /* Adjusted for 3 columns */
    gap: 10px !important;
}

html[lang]:not([lang="en"]) .feature-card,
html.translated-ltr .feature-card,
html.translated-rtl .feature-card,
html[_mstlang] .feature-card {
    padding: 10px 12px !important; /* Critical tight padding to maintain card height */
}

html[lang]:not([lang="en"]) .feature-card h4,
html.translated-ltr .feature-card h4,
html.translated-rtl .feature-card h4,
html[_mstlang] .feature-card h4 {
    font-size: 18px !important; /* Much larger title */
    margin-bottom: 6px !important;
    letter-spacing: -0.2px !important; /* Slight squeeze for performance */
}

html[lang]:not([lang="en"]) .feature-card ul,
html.translated-ltr .feature-card ul,
html.translated-rtl .feature-card ul,
html[_mstlang] .feature-card ul {
    font-size: 13.5px !important; /* Much larger list font */
    line-height: 1.15 !important;
}

html[lang]:not([lang="en"]) .feature-card ul li,
html.translated-ltr .feature-card ul li,
html.translated-rtl .feature-card ul li,
html[_mstlang] .feature-card ul li {
    margin-bottom: 3px !important; /* Minimizing vertical gaps */
    gap: 6px !important;
}

.features-right-col {
    display: none !important; /* Hiding the video as requested */
    grid-column: 4;
    grid-row: 1 / span 2;
}

.premium-video-wrapper-v2 {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin: auto 0; /* Center vertically in the spanning cell */
}

.premium-video-wrapper-v2 iframe,
.premium-video-wrapper-v2 video {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    object-fit: cover;
}

@media (max-width: 1200px) {
    .features-dual-layout {
        grid-template-columns: repeat(2, 1fr);
        max-width: 1000px;
    }
    
    .features-right-col {
        grid-column: 1 / span 2;
        grid-row: auto;
        aspect-ratio: 16 / 9;
        min-height: auto;
    }
}

@media (max-width: 768px) {
    .features-dual-layout {
        grid-template-columns: 1fr 1fr !important;
    }
    
    .features-right-col {
        grid-column: 1 / span 2;
    }
}

@media (max-width: 480px) {
    .features-dual-layout {
        grid-template-columns: 1fr !important;
    }
    .features-right-col {
        grid-column: 1;
    }
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: clamp(14px, 1vw, 24px); 
    border-radius: clamp(12px, 0.8vw, 20px);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), border-color 0.3s ease, box-shadow 0.3s ease;
    will-change: transform, box-shadow;
    display: flex;
    flex-direction: column;
    height: 100%; /* Ensure card takes full row height */
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    border-color: var(--accent-color);
}

/* Premium Video Column Styles */
.premium-video-wrapper-v2 {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.premium-video-wrapper-v2 iframe,
.premium-video-wrapper-v2 video {
    width: 100%;
    height: 100%;
    border: none;
    object-fit: cover;
}

.ambient-video-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(108, 99, 255, 0.15) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
    filter: blur(40px);
}

.feature-card h4 {
    font-family: 'Outfit', sans-serif;
    color: var(--accent-color);
    font-size: clamp(14px, 0.8vw, 19px); /* Increased significantly for 2k legible text under 0.84 zoom */
    margin-bottom: clamp(6px, 0.5vw, 12px);
}

.feature-card ul {
    list-style: none;
    color: var(--text-color);
    font-size: clamp(11.5px, 0.7vw, 15.5px); /* Increased significantly for 2k legible text */
}

.dual-column-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: clamp(15px, 1.3vw, 34px);
    row-gap: clamp(4px, 0.3vw, 8px);
}

.feature-card ul li {
    margin-bottom: clamp(4px, 0.3vw, 8px);
    display: flex;
    align-items: flex-start;
    gap: clamp(6px, 0.4vw, 10px);
}

.feature-card ul li i {
    color: var(--accent-color);
    font-size: 12px;
    margin-top: 4px;
}

/* Hero Badges */
.hero-badges {
    position: absolute;
    top: 30px;
    right: 30px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.badge-item img.app-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.badge-item img.sys-icon {
    width: 35px;
    height: 35px;
    object-fit: contain;
    margin-top: 2px;
}

.badge-item span {
    font-size: 10px;
    font-weight: 700;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: rgba(255, 255, 255, 0.1);
    padding: 4px 8px;
    border-radius: 6px;
}

/* Reviews Section */
.reviews-section {
    width: 100%;
    max-width: none;
    padding: 20px 0 0;
}

.reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
    padding-bottom: 20px;
}

@media (max-width: 768px) {
    .reviews-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .reviews-header p {
        text-align: left !important;
    }
}

.reviews-header h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 42px;
    font-weight: 800;
}

.reviews-header h2 span {
    color: var(--accent-color);
}

.reviews-header p {
    color: var(--text-muted);
    font-size: 14px;
    text-align: right;
    max-width: 300px;
}

.reviews-marquee {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    padding: 20px 0;
    cursor: grab;
    user-select: none;
}

.reviews-marquee:active {
    cursor: grabbing;
}

/* Optional Edge fading effect */
.reviews-marquee::before,
.reviews-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.reviews-marquee::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-color), transparent);
}

.reviews-marquee::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-color), transparent);
}

.reviews-track {
    display: flex;
    gap: clamp(20px, 1.5vw, 32px);
    width: max-content;
    animation: scroll-marquee 40s linear infinite;
}

.reviews-track:hover {
    animation-play-state: paused;
}

@keyframes scroll-marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 10px)); }
}

.review-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.08);
    padding: clamp(24px, 1.8vw, 34px);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    width: clamp(520px, 32vw, 640px);
    flex-shrink: 0;
    white-space: normal;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    will-change: transform, box-shadow;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
    .reviews-marquee {
        padding: 12px 0;
    }

    .review-card {
        width: min(90vw, 470px);
        padding: 24px;
    }
}

.review-card {
    border-top: 3px solid var(--accent-color);
}

.review-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

.reviews-track.is-dragging {
    transition: none !important;
}

.review-card a {
    pointer-events: auto;
}

.reviews-marquee.is-dragging .review-card a {
    pointer-events: none;
}

/* Quote marks removed per design update */


.review-status {
    color: var(--accent-color);
    font-size: 11px;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    margin-bottom: 15px;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 6px;
    opacity: 0.9;
}

.review-text {
    font-size: 12px;
    color: var(--text-color);
    line-height: 1.5;
    margin-bottom: 22px;
    z-index: 1;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: auto;
    z-index: 1;
}

.reviewer-info a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

.reviewer-info a:hover {
    opacity: 0.8;
}

.reviewer-profile-link {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}


.avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    background-color: #1a1a1a;
}

.reviewer-details {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    flex: 1;
    min-width: 0;
}

.reviewer-details > a {
    flex: 0 0 100%;
}

.reviewer-name {
    font-weight: 700;
    font-size: 14px;
    color: #fff;
    font-family: 'Outfit', sans-serif;
}

.reviewer-role {
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 3px 10px;
    border-radius: 6px;
    margin-top: 0;
    width: fit-content;
    display: inline-block;
    line-height: 1;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-color);
}

.role-admin {
    color: #8f88ff;
    border-color: rgba(143, 136, 255, 0.3);
    background: rgba(143, 136, 255, 0.1);
    box-shadow: 0 0 15px rgba(143, 136, 255, 0.1);
}

.role-mod {
    color: #4ade80;
    border-color: rgba(74, 222, 128, 0.3);
    background: rgba(74, 222, 128, 0.1);
    box-shadow: 0 0 15px rgba(74, 222, 128, 0.1);
}

.role-qualified {
    color: #38bdf8;
    border-color: rgba(56, 189, 248, 0.3);
    background: rgba(56, 189, 248, 0.1);
    box-shadow: 0 0 15px rgba(56, 189, 248, 0.1);
}

.role-editor {
    color: #9ca3af;
    border-color: rgba(156, 163, 175, 0.2);
    background: rgba(156, 163, 175, 0.05);
}

.role-pony {
    color: #f472b6; /* Pink-400 */
    border-color: rgba(244, 114, 182, 0.3);
    background: rgba(244, 114, 182, 0.1);
    box-shadow: 0 0 15px rgba(244, 114, 182, 0.1);
}

.role-unemployed {
    color: #94a3b8; /* Slate-400 */
    border-color: rgba(148, 163, 184, 0.3);
    background: rgba(148, 163, 184, 0.1);
}

.role-presetgold {
    color: #facc15;
    border-color: rgba(250, 204, 21, 0.35);
    background: rgba(250, 204, 21, 0.1);
    box-shadow: 0 0 15px rgba(250, 204, 21, 0.12);
}

.role-gold-suite {
    color: #f59e0b;
    border-color: rgba(245, 158, 11, 0.35);
    background: rgba(245, 158, 11, 0.1);
    box-shadow: 0 0 15px rgba(245, 158, 11, 0.12);
}

.role-loyal {
    color: #22d3ee;
    border-color: rgba(34, 211, 238, 0.3);
    background: rgba(34, 211, 238, 0.1);
    box-shadow: 0 0 15px rgba(34, 211, 238, 0.1);
}

.role-valto {
    color: #a78bfa;
    border-color: rgba(167, 139, 250, 0.32);
    background: rgba(167, 139, 250, 0.1);
    box-shadow: 0 0 15px rgba(167, 139, 250, 0.1);
}

/* Reviewer role removed per design update */


/* About Page Styles */
.about-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    min-height: 60vh;
    padding: 100px 0;
}

@media (max-width: 900px) {
    .about-section {
        flex-direction: column;
        text-align: center;
    }
}

.about-content {
    flex: 1;
}

.about-content h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 800;
}

.about-content p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 600px;
}

.about-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

@media (max-width: 900px) {
    .about-links {
        justify-content: center;
    }
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--text-color);
    color: var(--text-color);
    padding: 10px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--text-color);
    color: var(--bg-color);
}

.about-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
    width: 100%;
}

.about-image {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    background: #111;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

/* Contact Page Styles */
.contact-section {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 100px 0;
}

.contact-content h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 16px;
}

.contact-content p {
    color: var(--text-muted);
    font-size: 18px;
    margin-bottom: 40px;
}

.btn-discord {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    border: 2px solid #5865F2; /* Discord branding color */
    color: #fff;
    padding: 16px 40px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-bottom: 30px;
    box-shadow: 0 0 20px rgba(88, 101, 242, 0.2);
}

.btn-discord i {
    font-size: 20px;
}

.btn-discord:hover {
    background: #5865F2;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(88, 101, 242, 0.4);
}

.social-links-contact a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.3s;
}

.social-links-contact a:hover {
    color: #fff;
}

/* Pricing & Licensing Section */
.license-info-simple {
    margin-top: 24px;
    font-size: 14px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.license-info-simple i {
    color: var(--accent-color);
}

.license-info-simple .more-info-link {
    color: var(--accent-color);
    text-decoration: underline;
    text-underline-offset: 4px;
    font-weight: 700;
    transition: opacity 0.3s ease;
    margin-left: 5px;
}

.license-info-simple .more-info-link:hover {
    opacity: 0.8;
}

.licensing-section {
    padding: 0 0 100px 0;
}

.licensing-section .section-divider {
    margin-top: 0;
}

.licensing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.license-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 60px 40px;
    border-radius: 24px;
    text-align: center;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    will-change: transform, box-shadow;
}

.license-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-color);
    box-shadow: 0 15px 35px rgba(108, 99, 255, 0.2);
}

.license-icon {
    font-size: 50px;
    color: var(--accent-color);
    margin-bottom: 24px;
}

.license-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 20px;
}

.license-card p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 17px;
}

/* Reveal Animation System */
.reveal {
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.2, 1, 0.3, 1), 
                transform 1.2s cubic-bezier(0.2, 1, 0.3, 1);
    will-change: transform, opacity;
}

.reveal-up { transform: translateY(60px); }
.reveal-left { transform: translateX(-80px); }
.reveal-right { transform: translateX(80px); }
.reveal-zoom { transform: scale(0.95); }

.reveal.active {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* Staggered Delays for Grid Elements */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* End of styles */

/* --- Licenses Page Exceptions --- */
.licenses-main {
    display: flex;
    flex-direction: column;
    gap: 8vh;
    padding-top: 15vh;
    padding-bottom: 15vh;
}

/* Manage Licenses Portal */
.portal-section {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.portal-section h2 {
    font-size: 56px;
    font-weight: 500;
    margin-bottom: 20px;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    letter-spacing: -1px;
}

.portal-desc {
    color: var(--text-muted);
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
}

.portal-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: transparent;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    padding: 16px 32px;
    min-width: 280px; /* Alargado */
    border-radius: 50px;
    border: 2px solid var(--accent-color);
    box-shadow: 0 0 20px rgba(108, 99, 255, 0.4);
    transition: all 0.3s cubic-bezier(0.2, 1, 0.3, 1);
    margin-bottom: 30px;
}

.portal-btn:hover {
    background: var(--accent-color);
    color: #111; /* Dark text for punchy contrast on bright orange background */
    box-shadow: 0 10px 30px rgba(108, 99, 255, 0.4);
    transform: translateY(-3px) scale(1.02);
}

.portal-note {
    color: var(--text-muted);
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.accent-dot {
    width: 6px;
    height: 6px;
    background-color: var(--accent-color);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px rgba(108, 99, 255, 0.8);
}

/* FAQ Section */
.faq-section {
    max-width: 750px; /* Reduced to make them thinner */
    margin: -20px auto 30px auto;
}

.faq-section h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 30px;
    color: #fff;
    font-family: 'Outfit', sans-serif;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: #0a0a0c;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(108, 99, 255, 0.2);
}

.faq-question {
    padding: 18px 24px; /* Reduced vertical padding */
    font-size: 16px;
    font-weight: 500;
    color: #e0e0e0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question i {
    color: var(--text-muted);
    font-size: 14px;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    padding: 0 24px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.6;
    padding-bottom: 24px;
}

.faq-item.open {
    border-color: rgba(108, 99, 255, 0.5);
}

.faq-item.open .faq-question {
    color: #fff;
}

.faq-item.open .faq-question i {
    transform: rotate(180deg);
    color: var(--accent-color);
}

.faq-item.open .faq-answer {
    max-height: 800px;
}

/* Hero Pop Animation */
.load-pop {
    animation: hero-pop-in 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    transform-origin: center center;
    opacity: 0;
    /* Optional: Adding a slight delay so it pops right after page renders, matching video entrance nicely */
    animation-delay: 0.1s;
}

@keyframes hero-pop-in {
    0% {
        opacity: 0;
        transform: scale(0.4) translateY(40px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}
.video-stack {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9; /* Perfect widescreen proportions */
    display: flex;
    align-items: center;
    perspective: 1000px; /* Enhanced 3D depth */
}

.premium-video-wrapper {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 28px; /* Extra rounded for premium feel */
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.9);
    position: relative;
}

.video-layer {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transition: all 0.8s cubic-bezier(0.2, 1, 0.3, 1);
    will-change: transform, opacity;
}

.video-layer.active {
    z-index: 10;
    opacity: 1;
    transform: translate(0, 0) scale(1);
    pointer-events: auto;
}

.video-layer.background {
    z-index: 5;
    opacity: 0.3;
    transform: translate(12%, 0) scale(0.9);
    cursor: pointer;
    filter: brightness(0.7) blur(1px);
}

.video-layer.background:hover {
    opacity: 0.5;
    transform: translate(14%, 0) scale(0.92);
    filter: brightness(0.9) blur(0px);
}

.global-swap-btn {
    position: absolute;
    right: -25px;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111;
    font-size: 24px;
    cursor: pointer;
    z-index: 20;
    box-shadow: 0 10px 30px rgba(108, 99, 255, 0.4);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.global-swap-btn:hover {
    background: #fff;
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.5);
    color: var(--accent-color);
}

.swap-popup-cool {
    position: absolute;
    bottom: calc(100% + 15px);
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    color: #000;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 800;
    white-space: nowrap;
    pointer-events: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    animation: bouncePopupCool 2s infinite ease-in-out;
}

.swap-popup-cool::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: #fff transparent transparent transparent;
}

@keyframes bouncePopupCool {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-8px); }
}

@media (max-width: 768px) {
    .global-swap-btn {
        right: 10px;
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

.premium-video-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}



.load-pop-delay {
    animation: hero-pop-in 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    transform-origin: center center;
    opacity: 0;
    animation-delay: 0.3s;
}

/* Responsiveness for Side-by-Side Hero */
@media (max-width: 1300px) {
    .container.hero {
        max-width: 100%;
        padding: 0 40px;
    }
}

@media (max-width: 1100px) {
    .hero-content-wrapper {
        flex-direction: column;
        gap: 60px;
        text-align: center;
        align-items: center;
    }
    
    .hero-card-column {
        flex: 0 0 auto;
        width: 100%;
        max-width: 650px;
    }
    
    .hero-card {
        margin: 0 auto;
        height: auto;
    }

    .hero-video-column {
        width: 100%;
        max-width: 800px;
    }
    
    .premium-video-wrapper {
        height: auto;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 42px;
    }
    
    .hero-card {
        padding: 40px 20px;
    }
}

/* --- End of Custom Video Styles --- */

/* Boosting scale for 2K+ Monitors */
@media (min-width: 2000px) {
    .hero.container {
        max-width: 2000px;
    }
    
    .hero-card-column {
        flex: 0 0 550px;
    }
    
    .hero-card {
        padding: 60px;
    }
    
    h1 {
        font-size: 60px; /* Reduced from 64px for better fit */
    }
    
    .hero-card p {
        font-size: 18px;
        max-width: 700px;
    }
    
    .hero-content-wrapper {
        gap: 60px;
    }
    
    .price-current {
        font-size: 48px;
    }

    .btn-download {
        padding: 24px 48px;
        font-size: 18px;
    }

    .discount-code {
        font-size: 18px;
        padding: 16px 32px;
    }

    .code-highlight {
        font-size: 22px;
    }
}
/* --- Professional Footer Styles (Unified) --- */
.site-footer {
    position: relative;
    padding: 0;
    margin-top: 60px; /* Reduced from 150px to fix large gaps */
    overflow: hidden;
}

.footer-glow {
    position: absolute;
    bottom: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 500px;
    background: radial-gradient(circle, rgba(108, 99, 255, 0.12) 0%, transparent 70%);
    filter: blur(100px);
    z-index: -1;
    pointer-events: none;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.85);
    padding: 80px 0 40px 0;
    border-top: 1px solid rgba(108, 99, 255, 0.15);
    backdrop-filter: blur(20px);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 80px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 40px;
    text-align: center; /* Center text across all footer columns */
}

.footer-logo {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 28px;
    letter-spacing: 2px;
    color: var(--accent-color);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center; /* Center the logo brand */
    gap: 12px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.7;
    max-width: 360px;
    margin: 0 auto 30px auto; /* Center the brand paragraph */
}

.social-links {
    display: flex;
    gap: 20px;
    justify-content: center; /* Center social icons */
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.social-links a:hover {
    background: var(--accent-color);
    color: #000;
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 15px 30px rgba(108, 99, 255, 0.3);
    border-color: transparent;
}

.footer-nav h4, 
.footer-support h4 {
    color: white;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 30px;
    text-transform: uppercase;
    position: relative;
}

/* Removed the weird lines from footer headers */

.footer-nav ul, 
.footer-support ul {
    list-style: none;
    padding: 0;
}

.footer-nav li, 
.footer-support li {
    margin-bottom: 18px;
}

.footer-nav a, 
.footer-support a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-nav a:hover, 
.footer-support a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.copyright-text {
    text-align: center;
}

.copyright-text p {
    color: var(--text-muted);
    font-size: 13px;
    letter-spacing: 1.5px;
    line-height: 2;
    text-transform: uppercase;
}

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }
    
    .footer-brand {
        grid-column: span 2;
        text-align: center;
    }
    
    .footer-brand p {
        margin: 0 auto 30px auto;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-nav h4::after, 
    .footer-support h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 600px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-nav, .footer-support {
        grid-column: span 1;
    }
}

/* Bounce animation without the absolute-center transform (for mobile static flow) */
@keyframes promo-bounce-mobile {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* =====================================================
   MOBILE RESPONSIVE — HAMBURGER + FULL MOBILE LAYOUT
   Breakpoints: 768px (tablet/mobile), 480px (small phones)
   ===================================================== */

/* --- Hamburger Button --- */
.hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    cursor: pointer;
    z-index: 1001;
    padding: 0;
    transition: background 0.3s ease, border-color 0.3s ease;
    flex-shrink: 0;
}

.hamburger-btn:hover {
    background: rgba(108, 99, 255, 0.10);
    border-color: rgba(108, 99, 255, 0.35);
}

.hamburger-btn span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--text-color);
    border-radius: 2px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.hamburger-btn.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background: var(--accent-color);
}
.hamburger-btn.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.hamburger-btn.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background: var(--accent-color);
}

/* --- Mobile Nav Overlay --- */
.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(5, 5, 5, 0.97);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    z-index: 1000;
    display: none; /* JS toggles to flex */
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.4s cubic-bezier(0.2, 1, 0.3, 1),
                transform 0.4s cubic-bezier(0.2, 1, 0.3, 1);
}

.mobile-nav-overlay.open {
    opacity: 1;
    transform: translateY(0);
}

.mobile-nav-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.mobile-nav-overlay a {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(30px, 9vw, 46px);
    font-weight: 800;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 5px;
    padding: 18px 0;
    transition: color 0.3s ease, transform 0.3s ease;
    display: block;
    text-align: center;
}

.mobile-nav-overlay a:hover,
.mobile-nav-overlay a:active {
    color: var(--accent-color);
    transform: translateX(8px);
}

.nav-overlay-divider {
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(108, 99, 255, 0.5), transparent);
    border-radius: 2px;
    margin: 0 auto;
}

/* Prevent body scroll when nav overlay is open */
body.nav-open {
    overflow: hidden;
}

/* =====================================================
   RELEASES PAGE
   ===================================================== */
.releases-main {
    padding-top: clamp(45px, 7vw, 90px);
}

.releases-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: clamp(30px, 5vw, 60px);
    max-width: none;
    margin-bottom: clamp(45px, 7vw, 80px);
}

.releases-hero-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 0;
}

.releases-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 20px;
    color: var(--accent-color);
    font-family: 'IBM Plex Mono', 'Courier New', monospace;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.releases-eyebrow::before {
    content: '';
    width: 28px;
    height: 2px;
    background: var(--accent-color);
    box-shadow: 0 0 12px rgba(143, 136, 255, 0.65);
}

.releases-hero h1 {
    max-width: 760px;
    margin-bottom: 22px;
    font-family: 'Outfit', sans-serif;
    font-size: clamp(48px, 8vw, 92px);
    line-height: 0.95;
    letter-spacing: -4px;
}

.releases-hero p {
    max-width: 690px;
    color: var(--text-muted);
    font-family: 'IBM Plex Mono', 'Courier New', monospace;
    font-size: clamp(17px, 2vw, 21px);
    letter-spacing: 0.5px;
    line-height: 1.7;
}

.release-status-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.release-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 10px 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.035);
    color: #d9d9d9;
    font-family: 'IBM Plex Mono', 'Courier New', monospace;
    font-size: 13px;
    font-weight: 600;
}

.release-status-pill i {
    color: var(--accent-color);
}

.releases-hero-video {
    width: 100%;
    max-width: 1200px;
    justify-self: center;
    border-color: rgba(255, 204, 0, 0.36);
    border-radius: 16px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.52), 0 0 48px rgba(255, 204, 0, 0.12);
}

.release-timeline {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 42px;
}

.release-timeline::before {
    content: '';
    position: absolute;
    top: 12px;
    bottom: 0;
    left: 10px;
    width: 1px;
    background: linear-gradient(var(--accent-color), rgba(143, 136, 255, 0.08));
}

.release-entry {
    position: relative;
    padding: clamp(22px, 2.5vw, 30px);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 22px;
    background: linear-gradient(145deg, rgba(18, 18, 18, 0.94), rgba(8, 8, 8, 0.9));
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35);
}

.release-entry:not([open]) {
    background: linear-gradient(145deg, rgba(18, 18, 18, 0.88), rgba(8, 8, 8, 0.84));
}

.release-entry:not([open]) .release-notes {
    display: none;
}

.release-entry + .release-entry {
    margin-top: 26px;
}

.release-entry-featured {
    border-color: rgba(143, 136, 255, 0.34);
    box-shadow: 0 28px 86px rgba(0, 0, 0, 0.44), 0 0 44px rgba(143, 136, 255, 0.1);
}

.release-entry::before {
    content: '';
    position: absolute;
    top: -90px;
    right: -80px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: rgba(143, 136, 255, 0.08);
    filter: blur(50px);
    pointer-events: none;
}

.release-marker {
    position: absolute;
    top: 31px;
    left: -39px;
    width: 16px;
    height: 16px;
    border: 3px solid #090909;
    border-radius: 50%;
    background: var(--accent-color);
    box-shadow: 0 0 0 4px rgba(143, 136, 255, 0.17), 0 0 22px rgba(143, 136, 255, 0.7);
}

.release-entry-header {
    position: static;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    padding-right: 48px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    cursor: pointer;
    list-style: none;
}

.release-entry-header::-webkit-details-marker {
    display: none;
}

.release-entry-header::after {
    content: '\f078';
    position: absolute;
    top: clamp(22px, 2.5vw, 30px);
    right: clamp(22px, 2.5vw, 30px);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    flex: 0 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    color: var(--accent-color);
    font-family: 'Font Awesome 6 Free';
    font-size: 13px;
    font-weight: 900;
    pointer-events: auto;
    transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.release-entry[open] .release-entry-header::after {
    transform: rotate(180deg);
    border-color: rgba(143, 136, 255, 0.32);
    background: rgba(143, 136, 255, 0.12);
}

.release-entry:not([open]) .release-entry-header {
    padding-bottom: 0;
    border-bottom: 0;
}

.release-entry-header:focus-visible {
    outline: 2px solid var(--accent-color);
    outline-offset: 8px;
    border-radius: 14px;
}

.release-version {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.release-version h2 {
    margin: 0;
    font-family: 'Outfit', sans-serif;
    font-size: clamp(30px, 4vw, 42px);
    line-height: 1;
}

.release-badge {
    padding: 7px 11px;
    border-radius: 7px;
    background: var(--accent-color);
    color: #080808;
    font-family: 'IBM Plex Mono', 'Courier New', monospace;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.release-badge-muted {
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.055);
    color: #d6d6d6;
}

.release-subtitle {
    margin-top: 8px;
    color: var(--text-muted);
    font-family: 'IBM Plex Mono', 'Courier New', monospace;
    font-size: 15px;
    letter-spacing: 0.4px;
}

.release-preview-video {
    position: relative;
    width: clamp(280px, 30vw, 430px);
    aspect-ratio: 16 / 9;
    flex: 0 0 clamp(280px, 30vw, 430px);
    overflow: hidden;
    border: 1px solid rgba(143, 136, 255, 0.32);
    border-radius: 14px;
    background: #050505;
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.4), 0 0 28px rgba(143, 136, 255, 0.11);
    cursor: default;
    user-select: none;
}

.release-preview-video.releases-hero-video {
    width: 100%;
    max-width: 1200px;
    flex-basis: auto;
}

.release-preview-video::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.09), transparent 28%, rgba(143, 136, 255, 0.08));
}

.release-preview-stage {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.release-preview-clip {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease;
}

.release-preview-clip.is-active {
    opacity: 1;
    pointer-events: auto;
}

.release-video-tabs {
    position: absolute;
    left: 10px;
    top: 10px;
    z-index: 3;
    display: flex;
    gap: 7px;
    padding: 5px;
    border: 1px solid rgba(255, 204, 0, 0.42);
    border-radius: 10px;
    background: rgba(4, 4, 7, 0.86);
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.42), 0 0 20px rgba(255, 204, 0, 0.12);
}

.release-video-tab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 28px;
    padding: 6px 9px;
    border: 1px solid rgba(255, 204, 0, 0.58);
    border-radius: 7px;
    background: rgba(255, 204, 0, 0.12);
    color: #ffeaa0;
    font-family: 'IBM Plex Mono', 'Courier New', monospace;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.4px;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.release-video-tab:hover,
.release-video-tab.is-active {
    border-color: #ffcc00;
    background: #ffcc00;
    color: #080808;
    box-shadow: 0 0 18px rgba(255, 204, 0, 0.28);
}

.release-video-tab i {
    color: #ffcc00;
}

.release-video-tab:hover i,
.release-video-tab.is-active i {
    color: #080808;
}

.release-action {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    flex-shrink: 0;
    padding: 13px 18px;
    border-radius: 10px;
    background: var(--accent-color);
    color: #080808;
    font-family: 'IBM Plex Mono', 'Courier New', monospace;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.release-action:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(143, 136, 255, 0.22);
}

.release-notes-action {
    grid-column: 1 / -1;
    width: fit-content;
    margin-top: 2px;
}

.release-notes {
    position: relative;
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(36px, 6vw, 90px);
    padding-top: 20px;
}

.release-notes-expanded {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.release-major-group {
    grid-column: 1 / -1;
    padding: 16px 0 16px 18px;
    border-left: 3px solid var(--accent-color);
    background: linear-gradient(90deg, rgba(143, 136, 255, 0.11), rgba(45, 226, 230, 0.035), transparent);
}

.release-note-group h3 {
    margin-bottom: 10px;
    color: white;
    font-family: 'IBM Plex Mono', 'Courier New', monospace;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

.release-major-group h3 {
    margin-bottom: 13px;
    color: white;
    font-family: 'IBM Plex Mono', 'Courier New', monospace;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.release-note-group h3 i {
    width: 20px;
    color: var(--accent-color);
}

.release-major-group h3 i {
    width: 20px;
    color: #2de2e6;
}

.release-note-group ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.release-major-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin: 0;
    padding: 0 16px 0 0;
    list-style: none;
}

.release-note-group li {
    position: relative;
    margin-bottom: 6px;
    padding-left: 18px;
    color: #b8b8b8;
    font-family: 'IBM Plex Mono', 'Courier New', monospace;
    font-size: 14.5px;
    letter-spacing: 0.35px;
    line-height: 1.45;
}

.release-major-list li {
    margin: 0;
    color: #d7d7d7;
    font-family: 'IBM Plex Mono', 'Courier New', monospace;
    font-size: 14px;
    letter-spacing: 0.25px;
    line-height: 1.55;
}

.release-major-list strong {
    display: block;
    margin-bottom: 4px;
    color: white;
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    letter-spacing: 0;
}

.release-note-group li::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 0;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent-color);
}

.release-footnote {
    max-width: none;
    margin: 28px 0 0 42px;
    color: #777;
    font-family: 'IBM Plex Mono', 'Courier New', monospace;
    font-size: 13px;
    letter-spacing: 0.35px;
    line-height: 1.7;
}

@media (min-width: 901px) {
    .release-entry {
        display: block;
    }

    .release-entry-header {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 0 clamp(72px, 5vw, 92px) 20px 0;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    }

    .release-entry:not([open]) .release-entry-header {
        flex-direction: row;
        align-items: center;
        padding: 0;
        padding-right: 48px;
        border-right: 0;
        border-bottom: 0;
    }

    .release-action {
        align-self: flex-start;
        margin-top: 18px;
    }

    .release-notes {
        align-content: center;
        padding-top: 0;
    }
}

@media (max-width: 700px) {
    .releases-hero h1 {
        letter-spacing: -2px;
    }

    .release-timeline {
        padding-left: 25px;
    }

    .release-timeline::before {
        left: 3px;
    }

    .release-marker {
        left: -29px;
    }

    .release-entry-header {
        flex-direction: column;
    }

    .release-entry-featured .release-entry-header {
        padding-top: 0;
        padding-right: 48px;
    }

    .release-preview-video {
        width: 100%;
        flex-basis: auto;
    }

    .release-video-tabs {
        left: 8px;
        right: 8px;
        top: 8px;
        justify-content: center;
    }

    .release-video-tab {
        flex: 1;
        min-width: 0;
        padding: 7px 6px;
        font-size: 9px;
    }

    .release-action {
        width: 100%;
    }

    .release-notes {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .release-major-list {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .release-footnote {
        margin-left: 25px;
    }
}

@media (max-width: 1100px) {
    .releases-hero {
        gap: 28px;
    }

    .releases-hero-video {
        width: 100%;
        max-width: 900px;
        justify-self: center;
    }
}

/* =====================================================
   BREAKPOINT: max-width 768px (phones + tablets)
   ===================================================== */
@media (max-width: 768px) {

    /* === HEADER === */
    .hamburger-btn { display: flex; }
    header nav { display: none; }
    header {
        height: 70px;
        padding: 0 16px;
    }

    /* === VIDEO BACKGROUND (index only) === */
    /* Video is visible on mobile */

    /* === MAIN === */
    main { padding-top: 30px; }

    /* === FIX: Reveal animations disabled on mobile ===
       Prevents invisible (opacity:0) elements from creating dead blank space
       when scrolling back up. Animations are a desktop-only luxury. */
    .reveal-up,
    .reveal-left,
    .reveal-right {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    /* === FIX: FAQ margin-top override ===
       The inline style="margin-top: -20px" on .faq-section overlaps the video on mobile.
       Push it clearly below the video with positive margin. */
    .faq-section {
        margin-top: 36px !important;
    }

    /* === HERO === */
    .hero {
        min-height: auto;
        padding: 30px 0 50px;
    }

    .hero-content-wrapper {
        flex-direction: column;
        gap: 36px;
        align-items: center;
        text-align: center;
    }

    .hero-card-column {
        flex: none;
        width: 100%;
        max-width: 100%;
    }

    .hero-card {
        padding: 24px 20px 30px;
        height: auto;
        border-radius: 18px;
    }

    h1 {
        font-size: 26px;
        margin-bottom: 14px;
        word-break: break-word;
    }

    .hero-card p {
        font-size: 13px;
        margin-bottom: 24px;
    }

    .hero-icon {
        font-size: 26px;
        margin-bottom: 16px;
    }

    .hero-actions {
        gap: 18px;
        margin-top: 24px;
        align-items: center;
    }

    .main-actions {
        flex-direction: column;
        gap: 20px;
        align-items: center;
        width: 100%;
    }

    /* Price box: flex-wrap so badge drops below prices */
    .price-box {
        display: flex !important;
        flex-wrap: wrap !important;
        min-width: unset;
        padding-top: 0;
        gap: 8px;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    /* Coming-soon badge: pull out of absolute flow, place below prices */
    .coming-soon {
        position: static !important;
        transform: none !important;
        animation: promo-bounce-mobile 2s infinite ease-in-out !important;
        order: 10 !important;      /* pushes it after prices in flex row */
        width: 100% !important;
        justify-content: center;
        margin-top: 4px;
        white-space: nowrap;
    }

    /* Hero promo video: enforce 16:9 like premium-video-wrapper-v2 */
    .video-stack {
        aspect-ratio: 16 / 9;
        height: auto;
        overflow: hidden;
        perspective: none;
    }

    .btn-download {
        width: 100%;
        justify-content: center;
        padding: 16px 20px;
        font-size: 14px;
    }

    .license-info-simple {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
        font-size: 12px;
    }

    .discount-code {
        flex-direction: column;
        gap: 6px;
        text-align: center;
        padding: 12px 14px;
        font-size: 12px;
        width: 100%;
        box-sizing: border-box;
    }

    /* === HERO BADGES: Absolute top-right to match desktop but sized for mobile === */
    .hero-badges {
        position: absolute;
        top: 15px;
        right: 20px;
        gap: 12px;
        flex-direction: row;
        align-items: center;
        justify-content: flex-end;
        margin-bottom: 0;
    }

    .badge-item {
        gap: 3px;
    }

    .badge-item img.app-icon {
        width: 22px;
        height: 22px;
    }

    .badge-item img.sys-icon {
        width: 18px;
        height: 18px;
        margin-top: 0;
    }

    .badge-item span {
        font-size: 7px;
        padding: 2px 5px;
    }

    /* === HERO VIDEO STACK === */
    .hero-video-column {
        width: 100%;
        max-width: 100%;
        justify-content: center;
    }

    /* Hide peekaboo background video on mobile */
    .video-layer.background {
        display: none !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }

    /* Hide swap navigation buttons on mobile */
    .global-swap-btn,
    .swap-popup-cool {
        display: none !important;
    }

    /* === FEATURES WIDE WRAPPER === */
    .features-wide-wrapper {
        overflow-x: hidden;
        width: 100%;
    }

    /* Clip panels content from overflowing */
    .panels-content-area,
    .panel-content-pane,
    .panel-card-premium {
        overflow: hidden;
    }

    /* === FEATURES DUAL LAYOUT (Power of LuckyTools) === */
    .features-dual-layout {
        grid-template-columns: 1fr 1fr !important;
        width: 100% !important;
        padding: 0 10px !important;
        zoom: 1 !important;
        gap: 10px !important;
        margin-bottom: 30px !important;
    }

    .features-right-col {
        grid-column: 1 / span 2 !important;
        grid-row: auto !important;
        order: -1; /* Show video first on mobile */
    }

    .feature-card {
        padding: 14px 12px !important;
        border-radius: 12px !important;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        min-height: 0;
        transition: none !important;
    }

    /* Nitro: Disable selection/hover animation strictly on mobile */
    .feature-card:hover {
        transform: none !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5) !important;
        border-color: var(--card-border) !important;
    }

    .feature-card h4 {
        font-size: 12px !important;
        margin-bottom: 6px !important;
        line-height: 1.3;
        letter-spacing: 0 !important;
    }

    .feature-card ul {
        font-size: 10px !important;
        padding-left: 0;
        list-style: none;
    }

    .feature-card ul li {
        margin-bottom: 3px;
        display: flex;
        gap: 4px;
        align-items: flex-start;
    }

    .feature-card i {
        font-size: 9px;
        margin-top: 2px;
    }

    .dual-column-list {
        grid-template-columns: 1fr !important;
    }

    /* Nitro: Disable scaling animation for local videos on mobile */
    .feature-row:hover .feature-image {
        transform: none !important;
    }
    
    .feature-image {
        transition: none !important; /* Make it static for mobile */
    }

    /* === FEATURE ROWS (Panels) === */
    .feature-row {
        flex-direction: column !important;
        gap: 28px;
        margin-bottom: 50px;
    }

    .feature-row.reverse {
        flex-direction: column !important;
    }

    .feature-content h3 {
        font-size: 28px;
    }

    .feature-content p {
        font-size: 14px;
    }

    .feature-list {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    /* === REVIEWS === */
    .reviews-section { padding: 10px 0; }
    .reviews-header { margin-bottom: 30px; }
    .reviews-header h2 { font-size: 28px; }

    /* === SECTION DIVIDER === */
    .section-divider { margin-bottom: 30px; }

    /* === FULL WIDTH BG === */
    .full-width-bg {
        margin-top: 30px;
        margin-bottom: 10px;
    }

    /* === FAQ SECTION === */
    .faq-section {
        padding: 0 16px;
        max-width: 100%;
    }

    .faq-question {
        padding: 16px 18px;
        font-size: 14px;
    }

    /* === PANEL FEATURE ITEMS (inside panel-card-text) === */
    .panels-tabs-section {
        overflow-x: hidden;
    }

    /* Compact the feature detail rows inside panel cards */
    .panel-card-text [style*="display:flex"],
    .panel-card-text [style*="display: flex"] {
        gap: 10px !important;
        padding: 12px 12px !important;
        margin-top: 10px !important;
        margin-bottom: 0 !important;
    }

    /* Make search-anim-wrap icons smaller */
    .search-anim-wrap {
        width: 34px !important;
        height: 34px !important;
        min-width: 34px;
        flex-shrink: 0;
    }

    .search-anim-wrap i {
        font-size: 0.9em !important;
    }

    /* Smaller feature label text in panels */
    .panel-card-text [style*="font-size:0.88em"],
    .panel-card-text [style*="font-size: 0.88em"] {
        font-size: 0.8em !important;
    }

    /* Panel feature title badges (EXTENSIVE CUSTOMIZATION etc) */
    .panel-card-text [style*="font-size:0.88em"][style*="font-weight:800"],
    .panel-card-text [style*="font-weight:800"] {
        font-size: 0.78em !important;
        letter-spacing: 0.5px !important;
    }

    /* === ABOUT PAGE === */
    .about-section {
        padding: 50px 0 40px;
        flex-direction: column;
    }

    .about-inner-flex {
        flex-direction: column !important;
        gap: 36px !important;
        text-align: center;
        align-items: center !important;
    }

    .about-content h1 { font-size: 26px; }

    .about-content p {
        font-size: 14px;
        max-width: 100%;
    }

    .about-visual {
        flex: none !important;
        width: 100% !important;
        justify-content: center;
    }

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

    /* === CONTACT PAGE === */
    .contact-section { padding: 50px 0 40px; }
    .contact-content h1 { font-size: 28px; }
    .contact-content p { font-size: 14px; }
    .btn-discord { padding: 14px 28px; font-size: 14px; }

    /* === LICENSES PAGE === */
    .licenses-main {
        padding-top: 6vh;
        padding-bottom: 6vh;
        gap: 5vh;
    }

    .portal-section h2 {
        font-size: 34px;
        letter-spacing: -0.5px;
    }

    .portal-desc { font-size: 14px; }

    .portal-btn {
        min-width: unset;
        width: 100%;
        font-size: 15px;
    }

    .licensing-grid {
        grid-template-columns: 1fr !important;
        gap: 16px;
        margin-top: 30px;
    }

    .license-card { padding: 36px 22px; }
    .license-card h3 { font-size: 22px; }

    /* === FOOTER === */
    .site-footer { margin-top: 30px; }
    .footer-bottom { padding: 50px 0 30px; }
    .footer-content { gap: 30px; }
    .footer-brand p { font-size: 14px; }

    /* === SUPPORT BADGE FIX === */
    .support-badge {
        padding: 8px 14px;
        gap: 10px;
        width: 100%;
        justify-content: flex-start;
    }
    .support-badge:hover {
        transform: none; /* no slide on mobile */
    }
    .support-name { font-size: 14px; }

    /* === HERO H1 OVERFLOW FIX === */
    .hero-card h1 {
        overflow-wrap: break-word;
        word-break: break-word;
    }

    /* === FEATURE ROW VIDEO FULL WIDTH === */
    .feature-visual,
    .feature-content {
        width: 100%;
        flex: none;
    }

    /* === INNER PAGE MAIN PADDING === */
    .inner-page-main {
        padding: 36px 0 60px;
    }
    .page-header-v2 {
        margin-bottom: 36px;
    }
    .page-header-v2 h1 {
        font-size: clamp(28px, 8vw, 40px);
    }
    .page-header-v2 p {
        font-size: 14px;
    }

    /* === GLASS CARD V2 === */
    .glass-card-v2 {
        padding: 24px 16px;
    }
}

/* =====================================================
   BREAKPOINT: max-width 480px (small smartphones)
   ===================================================== */
@media (max-width: 480px) {

    .container { padding: 0 14px; }

    h1 { font-size: 22px; line-height: 1.2; word-break: break-word; }

    .hero-card {
        padding: 55px 14px 24px;
        border-radius: 16px;
    }

    .hero-icon { font-size: 22px; margin-bottom: 12px; }

    .hero-badges { position: absolute; top: 12px; right: 12px; margin-bottom: 0; }
    .badge-item img.app-icon { width: 20px; height: 20px; }
    .badge-item img.sys-icon { width: 16px; height: 16px; }
    .badge-item span { display: inline-block; font-size: 8px; padding: 2px 4px; }

    .price-current { font-size: 26px; }
    .price-strikethrough { font-size: 18px; }

    .coming-soon { font-size: 9px; padding: 4px 10px; gap: 5px; }
    #dealTimer { font-size: 9px; }

    .btn-download { font-size: 13px; padding: 14px 18px; }

    .code-highlight { font-size: 15px; }

    .feature-content h3 { font-size: 24px; }
    .feature-content p { font-size: 13px; }

    .reviews-header h2 { font-size: 24px; }

    .portal-section h2 { font-size: 26px; letter-spacing: -1px; }
    .portal-desc { font-size: 13px; }

    .contact-content h1 { font-size: 24px; }
    .contact-content p { font-size: 13px; }

    .about-content h1 { font-size: 22px; }
    .about-content p { font-size: 13px; }
    .about-image { max-width: 220px; }

    .faq-question { font-size: 13px; padding: 14px; }
    .faq-answer p { font-size: 13px; }

    .license-card { padding: 28px 18px; }
    .license-card h3 { font-size: 20px; }
    .license-card p { font-size: 14px; }

    .footer-logo { font-size: 20px; letter-spacing: 1px; }
    .footer-brand p { font-size: 13px; }
    .footer-nav a, .footer-support a { font-size: 14px; }
    .copyright-text p { font-size: 11px; letter-spacing: 1px; }

    /* === FEATURES: 1 column on very small phones === */
    .features-dual-layout {
        grid-template-columns: 1fr !important;
    }
    .features-right-col {
        grid-column: 1 !important;
    }

    /* === H1 SPAN: tighter on tiny screens === */
    h1 span {
        font-size: 24px;
    }

    /* === SUPPORT BADGE: compact on tiny === */
    .support-badge {
        padding: 6px 10px;
        gap: 8px;
    }
    .support-avatar { width: 36px; height: 36px; }
    .support-name { font-size: 13px; }
}

/* =====================================================
   MOBILE PERFORMANCE OVERRIDES (60FPS Android Optimization)
   Disables heavy compositing layers (backdrop-filter, filter: blur, huge shadows)
   ===================================================== */
@media (max-width: 768px) {
    /* 1. Remove Glassmorphism (backdrop-filter is extremely laggy on Android GPU scroll) */
    header,
    .mobile-nav-overlay,
    .feature-card,
    .license-card,
    .review-card,
    .hero-card,
    .faq-item {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        background-color: #0c0c0e !important;
        will-change: transform, opacity; /* Nitro layer promotion */
    }

    /* Keep the ambient background layer cheap while scrolling on mobile. */
    .video-bg-container {
        pointer-events: none !important;
        filter: none !important;
        -webkit-filter: none !important;
    }

    /* Nitro: Force container into its own layer */
    main {
        contain: paint;
        will-change: scroll-position;
    }
    .faq-item {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        background-color: #0c0c0e !important; /* Solid matte fallback to prevent transparency lag */
    }

    /* Header must be fully opaque to hide content scrolling behind it */
    header { border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important; background-color: #050505 !important; }
    .mobile-nav-overlay { background-color: #050505 !important; }

    /* 2. Discard heavy filter blurs completely (massive GPU bounding box repaints) */
    .ambient-glow,
    .ambient-video-glow,
    .glow-orb {
        display: none !important; 
    }

    /* 3. Simplify massive box-shadow spreads */
    .premium-video-wrapper-v2,
    .premium-video-wrapper,
    .feature-card,
    .review-card {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5) !important;
    }
    
    .feature-card:hover,
    .review-card:hover {
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.7) !important;
    }

    .swap-hint {
        box-shadow: 0 4px 10px rgba(108, 99, 255, 0.4) !important;
    }

    /* 4. Force Hardware Acceleration on moving/heavy elements */
    .reviews-track,
    .reviews-marquee,
    .video-stack,
    .premium-video-wrapper,
    .coming-soon {
        -webkit-transform: translateZ(0);
        transform: translateZ(0); 
        will-change: transform;
    }

    /* 5. Disable Entrance Animations to prevent main thread blocking (opacity: 0 hang) */
    .load-pop,
    .load-pop-delay {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }

    /* Nitro: Ensure smooth, non-blocking scroll interaction */
    html, body {
        scroll-behavior: auto !important; /* Native scroll is smoother than software behavior on some Androids */
        -webkit-overflow-scrolling: touch;
    }

    /* Nitro: Disable all transitions and pointer events while scrolling 
       to guarantee 60FPS on mid-range Androids. */
    body.is-scrolling * {
        pointer-events: none !important;
        transition: none !important;
        animation-play-state: paused !important;
    }

    body.is-scrolling .release-preview-video,
    body.is-scrolling .release-preview-video *,
    body.is-scrolling .release-video-tabs,
    body.is-scrolling .release-video-tabs * {
        pointer-events: auto !important;
    }
}

/* --- PREMIUM COOKIE BANNER (SOLID DESIGN) --- */
.cookie-banner {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 400px;
    background-color: var(--card-bg);
    border: 1px solid var(--card-border);
    border-top: 3px solid var(--accent-color);
    padding: 24px;
    border-radius: 16px;
    z-index: 9999;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8), 0 0 20px rgba(108, 99, 255, 0.1);
    display: none; /* Controlled by JS */
    flex-direction: column;
    gap: 16px;
    animation: cookie-slide-up 0.6s cubic-bezier(0.2, 1, 0.3, 1) forwards;
}

@keyframes cookie-slide-up {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.cookie-banner.hiding {
    animation: cookie-fade-out 0.4s ease forwards;
}

@keyframes cookie-fade-out {
    to {
        opacity: 0;
        transform: translateY(10px) scale(0.98);
    }
}

.cookie-content h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--accent-color);
}

.cookie-content p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

.cookie-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.btn-cookie-accept {
    background-color: var(--accent-color);
    color: #000;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cookie-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--accent-glow);
    filter: brightness(1.1);
}

.btn-cookie-info {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    transition: color 0.3s;
}

.btn-cookie-info:hover {
    color: var(--text-color);
    text-decoration: underline;
}

/* Responsive: Mobile Banner */
@media (max-width: 768px) {
    .cookie-banner {
        bottom: 0;
        right: 0;
        width: 100%;
        border-radius: 20px 20px 0 0;
        border-left: none;
        border-right: none;
        padding: 20px;
        box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
    }
}

.header-logo {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

/* =====================================================
   NEW PREMIUM DESIGN SYSTEM (GLASSMORPHISM V2)
   ===================================================== */

.glass-card-v2 {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, border-color 0.3s ease;
    margin: 0 auto;
    max-width: 900px;
}

.glass-card-v2:hover {
    border-color: rgba(108, 99, 255, 0.3);
}

.page-header-v2 {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInDown 1s ease-out;
}

.page-header-v2 h1 {
    font-size: clamp(40px, 5vw, 64px);
    margin-bottom: 20px;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
}

.page-header-v2 p {
    color: var(--text-muted);
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
}

.inner-page-main {
    padding: 60px 0 120px;
}

/* 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);
    }
}

.animate-up {
    animation: fadeInUp 0.8s cubic-bezier(0.2, 1, 0.3, 1) forwards;
}

/* Social Link Premium Style */
.social-item-v2 {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.social-item-v2:hover {
    background: rgba(108, 99, 255, 0.1);
    border-color: var(--accent-color);
    color: var(--accent-color);
    transform: translateY(-3px);
}

.about-grid-v2 {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 992px) {
    .about-grid-v2 {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .about-visual-v2 {
        order: -1;
    }
}

.about-visual-v2 {
    position: relative;
    padding: 20px;
}

.about-visual-v2 img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
}

.about-visual-v2::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, var(--accent-glow) 0%, transparent 70%);
    z-index: -1;
    opacity: 0.3;
    filter: blur(40px);
}

/* Creative Community Banner */
.timeline-ambient-stage {
    position: relative;
    isolation: isolate;
}

.timeline-ambient {
    position: absolute;
    z-index: 0;
    top: -80px;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
    pointer-events: none;
    opacity: 0.7;
    mask-image: linear-gradient(to bottom, transparent 0, #000 8%, #000 88%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 8%, #000 88%, transparent 100%);
}

.timeline-ambient::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(
            to bottom,
            transparent 0,
            transparent 107px,
            rgba(143, 136, 255, 0.08) 108px,
            transparent 109px
        ),
        repeating-linear-gradient(
            to right,
            transparent 0,
            transparent 159px,
            rgba(255, 255, 255, 0.025) 160px,
            transparent 161px
        );
}

.timeline-lane {
    position: absolute;
    left: -10%;
    width: 120%;
    height: 31px;
    display: flex;
    align-items: stretch;
    justify-content: space-around;
    gap: 18px;
    opacity: 0.48;
    animation: timelineClipsForward 34s linear infinite;
}

.timeline-lane::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: -7px;
    left: 0;
    height: 1px;
    background: rgba(143, 136, 255, 0.08);
}

.timeline-lane.lane-1 { top: 12%; animation-duration: 38s; }
.timeline-lane.lane-2 { top: 31%; animation-direction: reverse; animation-duration: 46s; }
.timeline-lane.lane-3 { top: 50%; animation-duration: 42s; }
.timeline-lane.lane-4 { top: 69%; animation-direction: reverse; animation-duration: 52s; }
.timeline-lane.lane-5 { top: 87%; animation-duration: 44s; }

.timeline-clip {
    position: relative;
    flex: 0 0 auto;
    height: 100%;
    border: 1px solid currentColor;
    background:
        linear-gradient(90deg, rgba(255,255,255,0.12), transparent 35%),
        color-mix(in srgb, currentColor 28%, transparent);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.025);
}

.timeline-clip::before {
    content: "";
    position: absolute;
    top: 6px;
    right: 8px;
    bottom: 6px;
    left: 8px;
    opacity: 0.28;
    background: repeating-linear-gradient(
        to right,
        currentColor 0,
        currentColor 2px,
        transparent 2px,
        transparent 8px
    );
}

.clip-short { width: 105px; }
.clip-medium { width: 185px; }
.clip-long { width: 310px; }
.clip-purple { color: #8f88ff; }
.clip-blue { color: #4e9cff; }
.clip-yellow { color: #f5b21b; }
.clip-pink { color: #e66db2; }
.clip-teal { color: #36c9b4; }

.timeline-playhead {
    position: absolute;
    top: 5%;
    bottom: 5%;
    left: 50%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(245, 178, 27, 0.18), transparent);
}

.timeline-playhead::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 7px;
    height: 7px;
    background: rgba(245, 178, 27, 0.35);
    transform: translateX(-50%) rotate(45deg);
}

@keyframes timelineClipsForward {
    from { transform: translateX(-3%); }
    to { transform: translateX(3%); }
}

.timeline-ambient-stage > .hero {
    position: relative;
    z-index: 1;
}

.community-banner-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 10;
    isolation: isolate;
}

.editing-tool-particles {
    position: absolute;
    top: 50%;
    left: 50%;
    width: min(720px, 92vw);
    height: 150px;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1;
}

.editing-tool-particle {
    --tool-x: 0px;
    --tool-y: 0px;
    --tool-mid-x: 0px;
    --tool-mid-y: 0px;
    --tool-rotation: 0deg;
    position: absolute;
    top: 50%;
    left: 50%;
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    border: 1px solid currentColor;
    background: rgba(8, 8, 14, 0.82);
    color: #f5b21b;
    font-size: 13px;
    opacity: 0;
    box-shadow: 0 0 14px color-mix(in srgb, currentColor 32%, transparent);
    animation: editingToolDrift 6s infinite cubic-bezier(0.18, 0.75, 0.25, 1);
}

.tool-pointer {
    --tool-x: -285px;
    --tool-y: -48px;
    --tool-mid-x: -68px;
    --tool-mid-y: -12px;
    --tool-rotation: -18deg;
    animation-delay: -0.4s;
}

.tool-razor {
    --tool-x: 292px;
    --tool-y: -42px;
    --tool-mid-x: 70px;
    --tool-mid-y: -10px;
    --tool-rotation: 22deg;
    color: #fff;
    animation-delay: -3.2s;
}

.tool-crop {
    --tool-x: -330px;
    --tool-y: 44px;
    --tool-mid-x: -79px;
    --tool-mid-y: 11px;
    --tool-rotation: 14deg;
    color: #8f88ff;
    animation-delay: -4.7s;
}

.tool-frame {
    --tool-x: 342px;
    --tool-y: 38px;
    --tool-mid-x: 82px;
    --tool-mid-y: 9px;
    --tool-rotation: -15deg;
    animation-delay: -1.8s;
}

.tool-magic {
    --tool-x: -220px;
    --tool-y: 62px;
    --tool-mid-x: -53px;
    --tool-mid-y: 15px;
    --tool-rotation: -24deg;
    color: #fff;
    animation-delay: -5.5s;
}

.tool-sliders {
    --tool-x: 230px;
    --tool-y: 60px;
    --tool-mid-x: 55px;
    --tool-mid-y: 14px;
    --tool-rotation: 18deg;
    color: #8f88ff;
    animation-delay: -2.5s;
}

@keyframes editingToolDrift {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.2) rotate(0deg);
    }
    10% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.18) rotate(0deg);
    }
    22% {
        opacity: 0.9;
        transform: translate(
            calc(-50% + var(--tool-mid-x)),
            calc(-50% + var(--tool-mid-y))
        ) scale(1) rotate(4deg);
    }
    78% {
        opacity: 0.65;
    }
    100% {
        opacity: 0;
        transform: translate(
            calc(-50% + var(--tool-x)),
            calc(-50% + var(--tool-y))
        ) scale(0.82) rotate(var(--tool-rotation));
    }
}

.community-banner-creative {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(143, 136, 255, 0.3);
    padding: 12px 30px 12px 16px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(143, 136, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.community-banner-creative::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(143, 136, 255, 0.2), transparent);
    transform: skewX(-20deg);
    animation: shine 4s infinite;
}

.community-banner-creative:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(143, 136, 255, 0.3);
    border-color: rgba(143, 136, 255, 0.8);
}

.avatar-stack {
    display: flex;
    align-items: center;
}

.avatar-stack .avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #8f88ff;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #aaa;
    font-size: 16px;
    margin-right: -15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
    position: relative;
    transition: transform 0.3s ease, color 0.3s ease;
}

.avatar-stack .avatar-1 { background: linear-gradient(135deg, #2a2a2a, #111); }
.avatar-stack .avatar-2 { background: linear-gradient(135deg, #333, #1a1a1a); }
.avatar-stack .avatar-3 { background: linear-gradient(135deg, #1f1f1f, #0a0a0a); }
.avatar-stack .avatar-4 { background: linear-gradient(135deg, #252525, #000); }

.avatar-stack .avatar:hover {
    transform: translateY(-5px);
    z-index: 10;
    color: #8f88ff;
}

.avatar-stack .avatar-count {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #8f88ff;
    border: 2px solid #1a1a1a;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000;
    font-size: 13px;
    font-weight: 900;
    margin-left: 10px;
    z-index: 5;
    box-shadow: 0 0 15px rgba(143, 136, 255, 0.4);
}

.community-text-epic {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.1;
}

.community-text-epic .text-glow {
    font-family: 'IBM Plex Mono', 'Courier New', monospace;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.community-text-epic .text-sub {
    font-family: 'IBM Plex Mono', 'Courier New', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    color: #8f88ff;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 10px rgba(143, 136, 255, 0.5);
}

.community-badge-sparkle {
    color: #8f88ff;
    font-size: 24px;
    margin-left: 10px;
    filter: drop-shadow(0 0 10px rgba(143,136,255,0.8));
    animation: pulseSparkle 2s infinite alternate;
}

@keyframes pulseSparkle {
    0% { transform: scale(1); filter: drop-shadow(0 0 5px rgba(143,136,255,0.5)); }
    100% { transform: scale(1.2); filter: drop-shadow(0 0 20px rgba(143,136,255,1)); }
}

@keyframes shine {
    0% { left: -100%; }
    20% { left: 200%; }
    100% { left: 200%; }
}

@media (max-width: 768px) {
    .timeline-ambient {
        opacity: 0.42;
    }

    .timeline-lane {
        width: 160%;
        left: -30%;
    }

    .timeline-lane.lane-2,
    .timeline-lane.lane-4 {
        display: none;
    }

    .editing-tool-particles {
        display: none;
    }

    .community-banner-creative {
        padding: 10px 20px 10px 10px;
        gap: 15px;
    }
    .community-text-epic .text-glow {
        font-size: 0.8rem;
    }
    .community-text-epic .text-sub {
        font-size: 1.2rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .timeline-lane {
        animation: none;
    }

    .editing-tool-particle {
        display: none;
    }
}

.luckycurves-preview-column {
    padding-top: 135px;
}

@media (max-width: 900px) {
    .luckycurves-preview-column {
        padding-top: 0;
    }
}
