/* --- PERFORMANCE MODE FALLBACKS --- */
.low-perf *,
.low-perf *::before,
.low-perf *::after {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: none !important;
    text-shadow: none !important;
    transition-duration: 0.1s !important;
}

.low-perf .section-card,
.low-perf .changelog-item,
.low-perf .changelog-modal-content,
.low-perf .download-modal-content {
    background: rgba(10, 10, 15, 0.96) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.low-perf #top-nav-bar {
    background: #000 !important;
}

:root {
    --primary: #8bb2f0;
    --secondary: #7000ff;
    --bg: #000;
    --text: #ffffff;
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: url('images/cursor.svg') 6 6, auto;
}

a,
button,
[role="button"],
.blue-link,
.guide-label,
.center-link,
.discord-widget,
.mute-btn,
.ntfs-trigger,
.back-btn,
.auth-btn,
.auth-dropdown-item,
#v-3d-container {
    cursor: url('images/cursor-pointer.svg') 9 3, pointer !important;
}

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100vh;
    background: radial-gradient(circle at 50% -5%, rgba(139, 178, 240, 0.18) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
    z-index: 3;
    /* Powyżej canvas (z=1), ale poniżej UI (z=100) */
}

h1,
h2,
.logo {
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 2px;
}


/* Loader */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #000;
    /* Głęboka w pełni wtopiona czerń */
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

#v-3d-container {
    width: 100vw;
    height: 100vh;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

#v-3d-container:hover {
    transform: scale(1.1);
}




/* 3D Canvas */
#canvas-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 2;
    pointer-events: none;
}

/* Top Navigation Bar */
#top-nav-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    z-index: 10000;
    padding: 0 40px;
    opacity: 0;
}

@keyframes fadeInDownNav {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-link {
    font-family: 'Orbitron', sans-serif;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    user-select: none;
}

.nav-link:hover,
.nav-link.active-link {
    color: var(--primary);
    text-shadow: 0 0 10px rgba(139, 178, 240, 0.6);
}

.nav-left-logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: #fff;
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    transition: all 0.3s ease;
}

.nav-left-logo:hover {
    color: var(--primary);
    text-shadow: 0 0 15px rgba(139, 178, 240, 0.3);
}

.nav-links-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.nav-right-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
    margin-right: 35px;
    /* Space for mute button */
}

/* Center Menu Overlay */
#center-menu-container {
    position: absolute;
    top: 72vh;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    z-index: 100;
    opacity: 0;
}

.center-link {
    font-family: 'Orbitron', sans-serif;
    font-weight: 400;
    color: var(--text);
    text-decoration: none;
    font-size: 1.51rem;
    letter-spacing: 2px;
    /* Transition ONLY specific non-moving properties to avoid conflicts with GSAP */
    transition: opacity 0.3s ease, color 0.3s ease, text-shadow 0.3s ease;
    opacity: 0.85;
    user-select: none;
    -webkit-user-select: none;
}

.center-link:hover {
    opacity: 1;
    color: var(--primary);
    transform: scale(1.05);
    text-shadow: 0 0 15px rgba(139, 178, 240, 0.5);
}

.main-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    font-size: 1.6rem;
    font-weight: bold;
    color: #fff;
    letter-spacing: 4px;
    white-space: nowrap;
    opacity: 1;
    margin: 0;
    line-height: 1;
    padding: 18px 0;
    box-sizing: border-box;
    border-radius: 16px;
    background: rgba(139, 178, 240, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(139, 178, 240, 0.25);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(139, 178, 240, 0.05) inset,
        0 1px 0 rgba(255, 255, 255, 0.06) inset;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

/* Shimmer sweep on hover */
.main-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(139, 178, 240, 0.12),
            transparent);
    transition: left 0.6s ease;
    pointer-events: none;
}

.main-link:hover::before {
    left: 100%;
}

.main-link:hover {
    color: #fff;
    background: rgba(139, 178, 240, 0.14);
    border-color: rgba(139, 178, 240, 0.5);
    box-shadow:
        0 12px 48px rgba(139, 178, 240, 0.2),
        0 0 60px rgba(139, 178, 240, 0.08),
        0 0 0 1px rgba(139, 178, 240, 0.1) inset,
        0 1px 0 rgba(255, 255, 255, 0.1) inset;
    text-shadow: 0 0 20px rgba(139, 178, 240, 0.6);
    transform: none;
}

/* Stats Row */
.stats-row {
    display: flex;
    justify-content: center;
    align-items: stretch;
    margin-top: 45px;
    background: rgba(10, 10, 15, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    overflow: hidden;
    opacity: 0.8;
    transition: all 0.4s ease;
}

.stats-row:hover {
    opacity: 1;
    border-color: rgba(139, 178, 240, 0.3);
    background: rgba(139, 178, 240, 0.05);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.stat-item {
    padding: 22px 35px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: background 0.3s ease;
}

.stat-item:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.02);
}

.stat-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.35);
    text-transform: capitalize;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .stats-row {
        margin-top: 30px;
        flex-direction: column;
        width: 90vw;
        max-width: 320px;
    }

    .stat-item {
        padding: 15px;
        border-right: none !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .stat-item:last-child {
        border-bottom: none;
    }

    .stat-value {
        font-size: 1.4rem;
    }
}

/* Download icon inside the button */
.main-link .download-icon {
    width: 30px;
    height: 30px;
    stroke: var(--primary);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), stroke 0.3s ease;
    flex-shrink: 0;
}

.main-link:hover .download-icon {
    stroke: #fff;
    filter: drop-shadow(0 0 8px rgba(139, 178, 240, 0.8));
}

.hero-header {
    position: absolute;
    top: 46vh;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    z-index: 50;
    pointer-events: none;
    opacity: 0;
    user-select: none;
    -webkit-user-select: none;
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 4.2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    letter-spacing: -1px;
    text-transform: uppercase;
    text-shadow: 0 0 30px rgba(139, 178, 240, 0.3);
}

.hero-title .accent-text {
    color: var(--primary);
    text-shadow: 0 0 30px rgba(139, 178, 240, 0.4);
}



.subtitle {
    position: absolute;
    top: 20vh;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    /* Ensure full width for centering text */
    height: 151px;
    /* Shared height to keep vertical alignment consistent */
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Orbitron', sans-serif;
    font-size: 2.2rem;
    font-weight: 400;
    color: #e0e6ed;
    text-align: center;
    line-height: 1.25;
    letter-spacing: 2px;
    opacity: 0;
    z-index: 50;
    pointer-events: none;
    user-select: none;
    -webkit-user-select: none;
}

.subtitle-phrase {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
    width: 90vw;
    pointer-events: none;
}

.subtitle-phrase.active-phrase {
    opacity: 1;
    visibility: visible;
}

.subtitle-phrase.fade-out-phrase {
    opacity: 0;
    visibility: visible;
}

.subtitle .highlight-text {
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0;
}

@keyframes slideRightFadeSubtitle {
    from {
        opacity: 0;
        transform: translate(-50%, -20px);
    }

    to {
        opacity: 0.9;
        transform: translate(-50%, 0);
    }
}

/* Discord Widget */
.discord-widget {
    width: max-content;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 6px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    z-index: 12000;
    user-select: none;
    -webkit-user-select: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

/* We removed the .side-mode class and CSS animations from here */
/* as everything will now be handled via GSAP for perfect smoothness */

.discord-widget:hover {
    border-color: rgba(139, 178, 240, 0.4);
    background: rgba(139, 178, 240, 0.08);
    box-shadow: 0 0 15px rgba(139, 178, 240, 0.15);
}

.discord-icon {
    width: 26px;
    height: 26px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #5865F2;
    /* Discord Blurple */
    border-radius: 50%;
    padding: 4px;
}

.discord-icon svg {
    width: 100%;
    height: 100%;
    fill: white;
}

.discord-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.discord-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 1.5px;
    white-space: nowrap;
    text-transform: uppercase;
}

.discord-stats {
    position: fixed;
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 20000;
    pointer-events: none;
    opacity: 0;
    white-space: nowrap;
}

.discord-stats span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.online-dot,
.member-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.online-dot {
    background-color: #3ba55c;
    box-shadow: 0 0 5px #3ba55c;
}

.member-dot {
    background-color: #8e9297;
}

/* --- GUIDE / CHANGELOG CONTAINER --- */
.content-container {
    position: fixed;
    top: 50%;
    left: 58%;
    transform: translate(-50%, -50%);
    width: 50%;
    max-width: 900px;
    height: auto;
    min-height: 400px;
    overflow-y: visible;
    padding: 60px 40px;
    z-index: 100;
    opacity: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Custom Scrollbar for container */
.content-container::-webkit-scrollbar {
    width: 8px;
}

.content-container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.content-container::-webkit-scrollbar-thumb {
    background: rgba(139, 178, 240, 0.5);
    border-radius: 10px;
}

.content-container::-webkit-scrollbar-thumb:hover {
    background: rgba(139, 178, 240, 1.0);
}

.guide-categories {
    list-style-type: none;
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

.guide-category {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    text-align: center;
    color: rgba(255, 255, 255, 0.95);
}

.guide-category.active-step {
    visibility: visible;
    pointer-events: auto;
    animation: fadeInStep 0.5s ease forwards;
}

@keyframes fadeInStep {
    from {
        opacity: 0;
        transform: translate(-50%, -40%);
    }

    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

#guide-labels-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    pointer-events: none;
    z-index: 100;
    opacity: 0;
    display: none;
}

.guide-label {
    position: absolute;
    font-family: 'Orbitron', sans-serif;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.92rem;
    letter-spacing: 2px;
    white-space: nowrap;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: translate(-100%, -50%) scale(1);
    transform-origin: right center;
    pointer-events: auto;
    padding: 15px 45px 15px 10px;
    /* Dodatkowe pionowe pole i wypuszczenie hitboxa do prawej strony (+45px ujemnego przesunięcia wyzerowanego w kodzie JS) */
    user-select: none;
    -webkit-user-select: none;
}

.guide-label.active-label {
    color: var(--primary);
    transform: translate(-100%, -50%) scale(1.35);
    font-weight: bold;
    text-shadow: 0 0 15px rgba(139, 178, 240, 0.6);
}

.scrollable-content {
    flex: 1;
    overflow-y: auto;
    padding-right: 15px;
    text-align: left;
}

.scrollable-content::-webkit-scrollbar {
    width: 6px;
}

.scrollable-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.scrollable-content::-webkit-scrollbar-thumb {
    background: rgba(139, 178, 240, 0.5);
    border-radius: 10px;
}

.scrollable-content::-webkit-scrollbar-thumb:hover {
    background: rgba(139, 178, 240, 1.0);
}


#toolbox-main-img,
#gov-main-img {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}

#toolbox-main-img:hover,
#gov-main-img:hover {
    transform: scale(1.15);
    box-shadow: 0 20px 60px rgba(0, 150, 255, 0.4) !important;
}

.guide-list-native {
    margin: 0;
    padding: 0 5px;
    list-style: none;
    counter-reset: step-counter;
    font-size: 1.15rem;
    line-height: 1.6;
}

.guide-list-native li {
    position: relative;
    margin-bottom: 25px;
    background: rgba(10, 10, 15, 0.4);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px 20px 20px 70px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.guide-list-native li:hover {
    background: rgba(139, 178, 240, 0.08);
    border-color: rgba(139, 178, 240, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 15px rgba(139, 178, 240, 0.1);
    transform: translateX(5px);
}

.guide-list-native li::before {
    counter-increment: step-counter;
    content: counter(step-counter);
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background: rgba(139, 178, 240, 0.05);
    border: 1px solid rgba(139, 178, 240, 0.3);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Orbitron', sans-serif;
    color: var(--primary);
    font-weight: bold;
    font-size: 1rem;
    box-shadow: 0 0 10px rgba(139, 178, 240, 0.1);
    transition: all 0.3s ease;
}

.guide-list-native li:hover::before {
    background: rgba(139, 178, 240, 0.2);
    border-color: rgba(139, 178, 240, 0.6);
    box-shadow: 0 0 20px rgba(139, 178, 240, 0.4);
    transform: translateY(-50%) scale(1.15) rotate(5deg);
    color: #fff;
}

.coming-soon {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.2);
    margin-top: 80px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.05);
    user-select: none;
    -webkit-user-select: none;
}

.guide-category strong {
    color: #ff4a4a;
    font-weight: 600;
}

.guide-nav-hint {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.85rem;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 2px;
    white-space: nowrap;
    text-shadow: none;
    pointer-events: none;
}

.guide-list li .highlight {
    color: var(--primary);
}

.guide-list li .code-block {
    background: rgba(255, 255, 255, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: monospace;
    color: #00f2ff;
}

.glow-link {
    color: #00f2ff;
    text-decoration: none;
    transition: all 0.2s;
    word-break: break-all;
}

.glow-link:hover {
    text-decoration: underline;
    text-shadow: 0 0 8px rgba(0, 242, 255, 0.6);
}

/* --- BACK BUTTON --- */
.back-btn {
    position: fixed;
    top: 0;
    left: 30px;
    height: 60px;
    /* Match #top-nav-bar height */
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    /* Reduced to match nav links */
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    z-index: 11000;
    /* Above the bar */
    transition: all 0.3s ease;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 12px;
    user-select: none;
    -webkit-user-select: none;
}

.back-btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.nav-left-logo:hover {
    color: var(--primary);
    text-shadow: 0 0 15px rgba(139, 178, 240, 0.3);
}

.back-btn:hover {
    color: var(--primary);
    text-shadow: 0 0 15px rgba(139, 178, 240, 0.8);
}

.back-btn:hover svg {
    transform: translateX(-5px);
    stroke: var(--primary);
    filter: drop-shadow(0 0 5px rgba(139, 178, 240, 0.8));
}

/* --- MUTE BUTTON --- */
.mute-btn {
    position: fixed;
    top: 0;
    right: 15px;
    height: 60px;
    /* Match #top-nav-bar height */
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    z-index: 11000;
    /* Above the bar */
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
}

.mute-btn svg {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease, stroke 0.3s ease;
}

.mute-btn:hover {
    color: var(--primary);
    filter: drop-shadow(0 0 10px rgba(139, 178, 240, 0.8));
}

.mute-btn:hover svg {
    transform: scale(1.1);
    stroke: var(--primary);
}

.blue-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
    cursor: pointer;
}

.blue-link:hover {
    text-shadow: 0 0 15px rgba(139, 178, 240, 0.8);
}

#rufus-preview-img,
#playbook-preview-img,
#up-to-point-preview-img {
    position: fixed;
    top: 50%;
    right: 5%;
    pointer-events: none;
    z-index: 1000;
    opacity: 0;
    transform: translateY(-40%) scale(0.9);
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.7);
    max-width: 450px;
    display: none;
}

#rufus-preview-img.active,
#playbook-preview-img.active,
#up-to-point-preview-img.active {
    opacity: 1;
    transform: translateY(-50%) scale(1);
}

#up-to-point-preview-img {
    max-width: 540px;
}

/* Tło Guide */
.guide-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: radial-gradient(circle at center, rgba(30, 80, 180, 0.35) 0%, rgba(15, 30, 80, 0.15) 50%, rgba(0, 0, 0, 0) 100%);
    background-size: 200% 200%;
    pointer-events: none;
    z-index: 0;
    opacity: 0;
    display: none;
    animation: flow-gradient 30s ease-in-out infinite alternate;
}

@keyframes flow-gradient {
    0% {
        background-position: 0% 0%;
    }

    50% {
        background-position: 100% 100%;
    }

    100% {
        background-position: 0% 100%;
    }
}

/* --- WALLPAPER GALLERY --- */
.wallpaper-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 160%;
    max-width: 1050px;
}

.wallpaper-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
    width: 100%;
}

.wallpaper-item {
    position: relative;
    flex: 1 1 45%;
    max-width: 48%;
    min-width: 250px;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(10, 10, 15, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(5px);
}

.wallpaper-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.wallpaper-item:hover {
    transform: translateY(-5px);
    border-color: rgba(139, 178, 240, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 15px rgba(139, 178, 240, 0.15);
}

.wallpaper-item:hover img {
    transform: scale(1.05);
}

.wallpaper-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.6) 50%, transparent 100%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.3s ease;
}

.wallpaper-item:hover .wallpaper-overlay {
    transform: translateY(0);
    opacity: 1;
}

.wallpaper-overlay span {
    font-family: 'Orbitron', sans-serif;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
}

.wallpaper-overlay .dl-btn {
    padding: 6px 12px;
    background: rgba(139, 178, 240, 0.1);
    border: 1px solid rgba(139, 178, 240, 0.3);
    border-radius: 6px;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
}

.wallpaper-overlay .dl-btn:hover {
    background: rgba(139, 178, 240, 0.2);
    border-color: rgba(139, 178, 240, 0.6);
    color: #fff;
    text-shadow: 0 0 10px rgba(139, 178, 240, 0.8);
}

/* --- LIGHTBOX --- */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(15px);
    z-index: 10000;
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 30px rgba(139, 178, 240, 0.2);
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    object-fit: contain;
}

.lightbox.active img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 40px;
    right: 40px;
    color: rgba(255, 255, 255, 0.7);
    cursor: url('images/cursor-pointer.svg') 9 3, pointer !important;
    transition: all 0.3s ease;
    padding: 10px;
}

.lightbox-close:hover {
    color: var(--primary);
    transform: scale(1.15) rotate(90deg);
    filter: drop-shadow(0 0 15px rgba(139, 178, 240, 0.8));
}

.lightbox-close svg {
    width: 40px;
    height: 40px;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

/* Vertical fix for 1080p */
@media (max-height: 1100px) {
    .content-container {
        top: 54% !important;
    }
}

/* Glass Card Stack Logic */
.glass-stack {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1200px;
}

.stack-card {
    position: absolute;
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 30px rgba(139, 178, 240, 0.15);
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(139, 178, 240, 0.3);
    /* Vain Blue Border to make cards visible */
}

/* Card positions - Dramatic Offsets */
.card-top {
    z-index: 10;
    transform: translateZ(0) translateY(0) scale(1);
    opacity: 1;
    filter: blur(0);
}

.card-mid {
    z-index: 5;
    transform: translateZ(-100px) translateY(50px) scale(0.9);
    opacity: 0.55;
    filter: blur(1.5px);
}

.card-back {
    z-index: 2;
    transform: translateZ(-200px) translateY(100px) scale(0.8);
    opacity: 0.25;
    filter: blur(3px);
}

/* Entering/Exiting animations (Always flies RIGHT) */
.card-out-next,
.card-out-prev {
    transform: translateX(130%) rotate(15deg) translateZ(200px) scale(0.9);
    opacity: 0;
}

.card-hidden {
    opacity: 0;
    transform: translateZ(-300px) translateY(150px) scale(0.7);
}

/* ─── AUTH BUTTON & DROPDOWN ──────────────────────────────────────────────── */
.auth-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 14px;
    height: 40px;
    box-sizing: border-box;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    transition: all 0.3s ease;
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    z-index: 10;
}

.auth-btn:hover {
    border-color: rgba(139, 178, 240, 0.4);
    background: rgba(139, 178, 240, 0.08);
    box-shadow: 0 0 15px rgba(139, 178, 240, 0.15);
}

.auth-btn.logged-in {
    border-color: rgba(139, 178, 240, 0.25);
    background: rgba(139, 178, 240, 0.06);
}

.auth-avatar {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1.5px solid rgba(139, 178, 240, 0.5);
    object-fit: cover;
    flex-shrink: 0;
}

.auth-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.auth-icon {
    width: 20px;
    height: 20px;
    color: rgba(255, 255, 255, 0.6);
    flex-shrink: 0;
    margin-left: 2px;
}

.auth-btn.logged-in .auth-icon {
    display: none;
}

/* Dropdown */
.auth-dropdown {
    position: absolute;
    top: 54px;
    right: 70px;
    width: 260px;
    background: rgba(10, 10, 18, 0.92);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(139, 178, 240, 0.15);
    border-radius: 14px;
    padding: 16px;
    z-index: 11001;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(139, 178, 240, 0.08);
    opacity: 0;
    transform: translateY(-8px) scale(0.96);
    pointer-events: none;
    transition: all 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.auth-dropdown.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.auth-dropdown-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 12px;
}

.dropdown-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid rgba(139, 178, 240, 0.4);
    object-fit: cover;
}

.dropdown-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    overflow: hidden;
}

.dropdown-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.75rem;
    color: #fff;
    letter-spacing: 1px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dropdown-email {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.4);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.auth-dropdown-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin: 4px 0 8px 0;
}

.auth-dropdown-item {
    width: 100%;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    padding: 10px 12px;
    border-radius: 8px;
    text-align: left;
    transition: all 0.2s ease;
    cursor: pointer;
}

.auth-dropdown-item:hover {
    background: rgba(139, 178, 240, 0.1);
    color: var(--primary);
}

/* --- RESPONSIVE NAVIGATION --- */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10002;
    padding: 0;
}

.mobile-menu-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: #fff;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Redundant definition removed */

@media (max-width: 992px) {
    #top-nav-bar {
        justify-content: space-between;
        padding: 0 20px;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links-wrapper {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 25px;
        transition: 0.4s cubic-bezier(0.19, 1, 0.22, 1);
        z-index: 10001;
        padding-top: 60px;
    }

    .nav-links-wrapper.active {
        left: 0;
    }

    .nav-link {
        font-size: 1.1rem;
        letter-spacing: 3px;
    }

    /* Hamburger Animation */
    .mobile-menu-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .mobile-menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .auth-btn {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        margin-right: 10px;
    }

    /* Real Fix for Perfect Centering on Mobile */
    #top-nav-bar {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 0 8px !important;
        position: absolute !important;
    }

    .nav-left-logo {
        position: absolute !important;
        left: 50% !important;
        top: 50% !important;
        transform: translate(-50%, -50%) !important;
        font-size: 1.25rem !important;
        margin: 0 !important;
        text-align: center !important;
        width: auto !important;
        white-space: nowrap !important;
    }

    .back-btn {
        left: 50% !important;
        top: 0 !important;
        transform: translateX(-50%) !important;
        height: 60px !important;
        margin: 0 !important;
        justify-content: center !important;
        width: auto !important;
        text-align: center !important;
    }

    .mute-btn {
        position: absolute !important;
        left: 48px !important;
        right: auto !important;
        top: 0 !important;
        height: 60px !important;
        z-index: 10004 !important;
    }

    .mobile-menu-toggle {
        position: relative !important;
        z-index: 10003 !important;
    }

    .nav-right-container {
        position: relative !important;
        right: 0 !important;
        top: 0 !important;
        transform: none !important;
        display: flex !important;
        align-items: center !important;
        margin-left: auto !important;
        gap: 5px !important;
        z-index: 10003 !important;
    }

    .site-footer {
        flex-direction: column !important;
        padding: 60px 20px !important;
        gap: 40px !important;
        align-items: center !important;
        text-align: center !important;
    }

    .footer-col.brand-col {
        max-width: none !important;
    }

    .footer-col {
        align-items: center !important;
    }

    .discord-info {
        display: none !important;
    }

    .discord-widget {
        padding: 4px 6px !important;
        width: auto !important;
        background: rgba(255, 255, 255, 0.08) !important;
    }

    .auth-name {
        display: block !important;
        font-size: 0.7rem !important;
        letter-spacing: 1px !important;
    }

    .auth-btn {
        padding: 5px 8px !important;
        border-radius: 20px !important;
        background: rgba(255, 255, 255, 0.05) !important;
    }

    #center-menu-container {
        top: 70vh !important;
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        /* Center children horizontally */
        justify-content: center !important;
    }

    .hero-header {
        top: 36vh !important;
        width: 100% !important;
        text-align: center !important;
    }

    .hero-title {
        font-size: 1.5rem !important;
        width: 100% !important;
    }

    .subtitle {
        top: 12vh !important;
        width: 100% !important;
    }

    .subtitle-phrase {
        font-size: 0.8rem !important;
        line-height: 1.4 !important;
        width: 95% !important;
    }

    .subtitle .highlight-text {
        font-size: 1rem !important;
    }

    /* Stats column on mobile - forced center */
    .stats-row {
        flex-direction: column !important;
        width: 250px !important;
        /* Fixed width to ensure it looks like a card */
        gap: 0 !important;
        margin: 20px auto 0 auto !important;
        align-items: stretch !important;
    }

    .stat-item {
        border-right: none !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        padding: 12px 0 !important;
    }

    .stat-item:last-child {
        border-bottom: none !important;
    }
}

/* --- TWEAKING SESSION PRICING CARDS --- */
.pricing-container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 30px;
    padding: 60px 20px;
    width: 100%;
    max-width: 1200px;
}

.pricing-card {
    flex: 1;
    background: rgba(139, 178, 240, 0.04);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(139, 178, 240, 0.15);
    border-radius: 24px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 178, 240, 0.05), transparent);
    transition: left 0.6s ease;
}

.pricing-card:hover::before {
    left: 100%;
}

.pricing-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(139, 178, 240, 0.4);
    background: rgba(139, 178, 240, 0.08);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(139, 178, 240, 0.1);
}

.pricing-card.highlighted {
    background: rgba(139, 178, 240, 0.08);
    border-color: rgba(139, 178, 240, 0.4);
    transform: scale(1.05);
    z-index: 1;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.5);
}

.pricing-card.premium {
    border-color: rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, rgba(139, 178, 240, 0.08), rgba(255, 255, 255, 0.02));
}

.pricing-card.premium:hover {
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(255, 255, 255, 0.1);
}

.pricing-header {
    margin-bottom: 30px;
    text-align: center;
}

.pricing-header h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 3px;
    color: #fff;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.pricing-header .price {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    text-shadow: 0 0 15px rgba(139, 178, 240, 0.4);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    flex-grow: 1;
}

.pricing-features li {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features li::before {
    content: '✓';
    color: var(--primary);
    font-weight: bold;
}

.pricing-btn {
    width: 100%;
    padding: 16px;
    border-radius: 12px;
    background: rgba(139, 178, 240, 0.1);
    border: 1px solid rgba(139, 178, 240, 0.3);
    color: #fff;
    font-family: 'Orbitron', sans-serif;
    font-weight: bold;
    font-size: 0.85rem;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.pricing-btn:hover {
    background: var(--primary);
    color: #000;
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(139, 178, 240, 0.5);
    transform: translateY(-2px);
}

.pricing-btn.active-btn {
    background: var(--primary);
    color: #000;
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(139, 178, 240, 0.3);
}

.pricing-btn.active-btn:hover {
    background: #fff;
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.5);
}

@media (max-width: 900px) {
    .pricing-container {
        flex-direction: column;
        padding: 40px 10px;
        align-items: center;
    }

    .pricing-card {
        width: 100%;
        max-width: 400px;
    }

    .pricing-card.highlighted {
        transform: scale(1.02);
    }
}

/* --- FOOTER --- */
.site-footer {
    position: relative;
    width: 100%;
    background: rgba(10, 10, 15, 0.4);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 80px 80px 40px 80px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    z-index: 1000;
    font-family: 'Inter', sans-serif;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-col.brand-col {
    max-width: 300px;
}

.footer-logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: #fff;
    margin-bottom: 5px;
}

.footer-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.6;
}

.footer-heading {
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.footer-link {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #fff;
}

/* --- FOOTER BOTTOM --- */
.footer-bottom {
    width: 100%;
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.25);
}

.footer-bottom-link {
    color: rgba(255, 255, 255, 0.25);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-link:hover {
    color: #fff;
}

.sep {
    margin: 0 10px;
    opacity: 0.3;
}

@media (max-width: 768px) {
    .site-footer {
        padding: 60px 30px 40px 30px;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* --- PREMIUM SECTIONS (Overclocking) --- */
.premium-section {
    display: none;
    width: 100%;
    min-height: 100vh;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    z-index: 10;
    padding: 15vh 40px 100px 40px;
    background: radial-gradient(circle at top center, rgba(139, 178, 240, 0.15) 0%, rgba(0, 0, 0, 0) 80%),
        rgba(10, 10, 15, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

/* --- CHANGELOG SPECIFIC (No blur) --- */
.changelog-section {
    display: none;
    width: 100%;
    min-height: 100vh;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    z-index: 10;
    padding: 15vh 40px 100px 40px;
    background: radial-gradient(circle at top center, rgba(139, 178, 240, 0.15) 0%, rgba(0, 0, 0, 0) 80%),
        rgba(10, 10, 15, 0.4);
}

.overclock-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.overclock-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.overclock-card.recommended {
    border: 1px solid rgba(139, 178, 240, 0.4);
    background: rgba(139, 178, 240, 0.08);
    box-shadow: 0 10px 30px rgba(139, 178, 240, 0.1);
}

.overclock-card.recommended:hover {
    background: rgba(139, 178, 240, 0.08);
    border-color: rgba(139, 178, 240, 0.5);
}

.overclock-badge {
    position: absolute;
    top: -10px;
    left: 35px;
    background: var(--primary);
    color: #000;
    font-size: 0.6rem;
    padding: 4px 10px;
    border-radius: 20px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 2px 10px rgba(139, 178, 240, 0.4);
}

.overclock-price {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -1px;
}

.overclock-btn {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 10px 22px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.overclock-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    color: #fff;
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.05);
}

/* --- LANDING SECTIONS --- */
.landing-section {
    position: relative;
    width: 100%;
    padding: 120px 40px;
    z-index: 5;
    background: transparent;
    display: flex;
    justify-content: center;
}

.landing-section .container {
    max-width: 1200px;
    width: 100%;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    color: #fff;
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.section-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px auto;
    line-height: 1.6;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 25px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(139, 178, 240, 0.3);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.card-icon {
    width: 32px;
    height: 32px;
    color: rgba(255, 255, 255, 0.2);
    margin-bottom: 5px;
    transition: color 0.4s ease;
}

.feature-card:hover .card-icon {
    color: var(--primary);
}

.feature-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
}

.feature-card p {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.5;
}

/* Installation Section */
#installation .container {
    max-width: 800px;
}

.alert-box {
    background: rgba(139, 178, 240, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(139, 178, 240, 0.2);
    border-radius: 12px;
    padding: 20px 25px;
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 60px;
}

.alert-box svg {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: var(--primary);
}

.alert-box p {
    font-size: 0.9rem;
    color: rgba(139, 178, 240, 0.8);
    line-height: 1.5;
}

.install-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 80px;
}

.install-step {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.install-step:last-child {
    border-bottom: none;
}

.step-num {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    background: rgba(139, 178, 240, 0.1);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    flex-shrink: 0;
}

.step-content h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}

.step-content p {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.6;
}

.install-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-primary {
    background: #fff;
    color: #000;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--primary);
    box-shadow: 0 0 20px rgba(139, 178, 240, 0.4);
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Community Section */
.community-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.community-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 50px 40px;
    text-align: left;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.community-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.community-card .card-icon {
    color: rgba(255, 255, 255, 0.3);
}

.community-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
}

.community-card p {
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.6;
    margin-bottom: 20px;
}

.card-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: gap 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.card-link:hover {
    gap: 10px;
    text-shadow: 0 0 10px rgba(139, 178, 240, 0.5);
}

@media (max-width: 1100px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .features-grid {
        grid-template-columns: 1fr;
    }

    .install-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .install-step {
        flex-direction: column;
        gap: 15px;
    }
}

/* --- SCROLL HINT --- */
.scroll-hint-container {
    position: absolute;
    top: 92vh;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 100;
    opacity: 0.7;
    transition: opacity 0.5s ease, transform 0.5s ease;
    pointer-events: none;
}

.mouse-icon {
    width: 26px;
    height: 44px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 15px;
    position: relative;
}

.mouse-icon .wheel {
    width: 2px;
    height: 8px;
    background: #8bb2f0;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: scroll-wheel-anim 2s infinite;
}

@keyframes scroll-wheel-anim {
    0% {
        transform: translate(-50%, 0);
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    70% {
        opacity: 1;
    }

    100% {
        transform: translate(-50%, 18px);
        opacity: 0;
    }
}

.scroll-text,
.swipe-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 4px;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    margin-left: 4px;
    /* Offset for centering due to letter-spacing */
}

.swipe-icon {
    display: none;
    width: 26px;
    height: 44px;
    border: 2px dashed rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    position: relative;
}

.swipe-icon .dot {
    width: 10px;
    height: 10px;
    background: #8bb2f0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(139, 178, 240, 0.6);
    animation: swipe-dot-anim 2s infinite;
}

.swipe-text {
    display: none;
}

@keyframes swipe-dot-anim {
    0% {
        transform: translate(-50%, 12px);
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    80% {
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -18px);
        opacity: 0;
    }
}

/* Mobile Toggle */
@media (max-width: 768px) {

    .mouse-icon,
    .scroll-text {
        display: none;
    }

    .swipe-icon,
    .swipe-text {
        display: block;
    }

    #top-nav-bar {
        position: absolute !important;
    }
}