/* ============================================
   FPSWare - Global Styles
   ============================================ */

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

:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #111111;
    --bg-card: #141414;
    --bg-card-border: rgba(255, 255, 255, 0.06);

    --red-primary: #FF2D2D;
    --red-dark: #CC1A1A;
    --red-glow: rgba(255, 45, 45, 0.3);
    --red-subtle: rgba(255, 45, 45, 0.08);

    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.55);
    --text-muted: rgba(255, 255, 255, 0.35);

    --font-display: 'Chakra Petch', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;

    --header-height: 72px;
}

/* ---- Scroll Progress Bar ---- */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--red-primary), #ff6b4a);
    z-index: 10000;
    transition: width 0.05s linear;
    box-shadow: 0 0 12px var(--red-glow);
}

/* ---- Hero Entrance Animation ---- */
.hero-reveal {
    opacity: 0;
    transform: translateY(32px);
    animation: heroReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: calc(0.15s + var(--reveal-order, 0) * 0.12s);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ============================================
   Header
   ============================================ */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-height);
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    transition: opacity 0.2s;
}

.logo:hover {
    opacity: 0.8;
}

.logo-icon {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.logo-text {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 22px;
    letter-spacing: 4px;
    color: var(--text-primary);
    background: linear-gradient(135deg, #ffffff 60%, rgba(255, 45, 45, 0.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 8px;
    padding-left: 24px;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    color: var(--text-secondary);
}

.social-icon.discord {
    background: rgba(88, 101, 242, 0.15);
}

.social-icon.discord:hover {
    background: rgba(88, 101, 242, 0.3);
    color: #7289da;
}


.header-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 14px;
    color: var(--text-secondary);
    padding: 8px 20px;
    border-radius: 6px;
    transition: all 0.25s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.04);
}

.nav-link.nav-highlight {
    background: var(--red-primary);
    color: white;
    border-radius: 6px;
    padding: 8px 20px;
    transition: all 0.25s ease;
}

.nav-link.nav-highlight:hover {
    background: #ff4444;
    box-shadow: 0 4px 16px rgba(255, 45, 45, 0.3);
    transform: translateY(-1px);
}

.nav-link.active {
    color: var(--text-primary);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--red-primary);
    border-radius: 1px;
}

.header-right {
    display: flex;
    align-items: center;
}

.user-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.25s ease;
}

.user-icon:hover {
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.04);
}

/* ============================================
   Hero Section
   ============================================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
    overflow: hidden;
    background: var(--bg-primary);
}

/* Subtle grid background */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black, transparent);
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black, transparent);
}

/* Noise texture overlay */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    pointer-events: none;
}

.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--red-primary);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 8s infinite;
}

@keyframes particleFloat {
    0% {
        opacity: 0;
        transform: translateY(0) scale(1);
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0;
    }
    100% {
        opacity: 0;
        transform: translateY(-200px) scale(0.5);
    }
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.hero-glow-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 45, 45, 0.06) 0%, transparent 70%);
    right: 10%;
    top: 20%;
    animation: glowPulse 6s ease-in-out infinite;
}

.hero-glow-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 45, 45, 0.04) 0%, transparent 70%);
    left: 5%;
    bottom: 10%;
    animation: glowPulse 8s ease-in-out infinite reverse;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}

/* Hero Content (Left) */
.hero-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.trustpilot-badge {
    width: fit-content;
}

.trustpilot-img {
    height: 90px;
    width: auto;
    object-fit: contain;
}

@keyframes dotPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.hero-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(48px, 5.5vw, 76px);
    line-height: 1.05;
    letter-spacing: 1px;
    color: var(--text-primary);
    text-transform: uppercase;
}

.text-accent {
    color: var(--red-primary);
    position: relative;
    text-shadow: 0 0 40px rgba(255, 45, 45, 0.3);
}

.text-accent-dot {
    color: var(--red-primary);
    font-size: 1.2em;
    text-shadow: 0 0 30px rgba(255, 45, 45, 0.4);
}

.hero-subtitle {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 440px;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 8px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    padding: 14px 32px;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--red-primary), #e01e1e);
    color: white;
    box-shadow: 0 4px 24px rgba(255, 45, 45, 0.25);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #ff4444, var(--red-primary));
    box-shadow: 0 6px 32px rgba(255, 45, 45, 0.4), 0 0 60px rgba(255, 45, 45, 0.15);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.btn-outline:hover {
    border-color: rgba(255, 255, 255, 0.25);
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.03);
    transform: translateY(-2px);
}

/* Hero Card Area (Right) */
.hero-card-area {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px;
}

.hero-carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.6s ease;
}

.carousel-slide.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    position: relative;
}

.game-card {
    position: absolute;
    top: 2%;
    left: -60px;
    background: rgba(14, 14, 14, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 16px 20px;
    min-width: 230px;
    backdrop-filter: blur(20px) saturate(1.2);
    -webkit-backdrop-filter: blur(20px) saturate(1.2);
    z-index: 5;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 45, 45, 0.05);
    animation: heroReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.7s;
    opacity: 0;
    transform: translateY(32px);
}

.card-top {
    display: flex;
    align-items: center;
    gap: 12px;
}

.card-game-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--red-subtle);
    border: 1px solid rgba(255, 45, 45, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

.card-icon-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.card-game-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.game-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 2px;
    color: var(--text-primary);
    line-height: 1;
}

.game-cheat-name {
    font-family: var(--font-body);
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

.card-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.06);
    margin: 12px 0;
}

.card-status {
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-dot {
    width: 7px;
    height: 7px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.4);
    animation: dotPulse 2s ease-in-out infinite;
}

.status-text {
    font-size: 13px;
    font-weight: 500;
    color: #22c55e;
}

.status-badge {
    margin-left: auto;
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #22c55e;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.15);
    padding: 3px 10px;
    border-radius: 4px;
}

/* Character artwork */
.hero-artwork {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.hero-character {
    max-height: 540px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 50px rgba(255, 45, 45, 0.25)) drop-shadow(0 20px 60px rgba(0, 0, 0, 0.6));
    position: relative;
    z-index: 2;
    animation: characterReveal 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.4s;
    opacity: 0;
    transform: translateY(40px) scale(0.97);
}

@keyframes characterReveal {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Carousel Dots */
.hero-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 3;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
    cursor: pointer;
}

.dot.active {
    background: var(--red-primary);
    box-shadow: 0 0 8px var(--red-glow);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.3);
}

.dot.active:hover {
    background: var(--red-primary);
}

/* ============================================
   Why Us Section
   ============================================ */

.why-us {
    position: relative;
    padding: 120px 0;
    background: var(--bg-primary);
    overflow: hidden;
}

/* Grid + glow backgrounds (like hero) */
.why-us::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, black, transparent);
    -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, black, transparent);
    pointer-events: none;
}

.why-us::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 45, 45, 0.07) 0%, transparent 70%);
    top: 10%;
    left: -5%;
    border-radius: 50%;
    pointer-events: none;
    animation: glowPulse 8s ease-in-out infinite;
}

.why-us-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 45, 45, 0.05) 0%, transparent 70%);
    bottom: 5%;
    right: -5%;
    border-radius: 50%;
    pointer-events: none;
    animation: glowPulse 6s ease-in-out infinite reverse;
}

.why-us-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.why-us-header {
    margin-bottom: 60px;
}

.section-label {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--red-primary);
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.section-label::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--red-primary);
    border-radius: 1px;
}

.section-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(36px, 4vw, 56px);
    line-height: 1.1;
    color: var(--text-primary);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 24px;
    align-items: stretch;
}

.why-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
    min-width: 0;
}

.why-right {
    display: flex;
    flex-direction: column;
}

/* Base card style */
.why-card {
    background: linear-gradient(165deg, #161616 0%, #0e0e0e 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease,
                border-color 0.4s ease;
}

.why-card.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Gradient border overlay — always subtly visible */
.why-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(145deg, rgba(255, 45, 45, 0.12), transparent 50%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.3;
    transition: opacity 0.4s ease;
}

/* Inner ambient glow */
.why-card::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 45, 45, 0.06) 0%, transparent 70%);
    top: -60px;
    right: -60px;
    border-radius: 50%;
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.4s ease;
    opacity: 0.5;
}

.why-card:hover {
    border-color: rgba(255, 45, 45, 0.2);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(255, 45, 45, 0.08);
}

.why-card:hover::before {
    opacity: 1;
}

.why-card:hover::after {
    opacity: 1;
    transform: scale(1.3);
}

.why-card-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 22px;
    letter-spacing: 0.5px;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.why-card-desc {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* ---- Secure Payments Card ---- */
.why-card-payments {
    overflow: hidden;
}

.why-card-payments .why-card-title {
    font-size: 26px;
    margin-bottom: 6px;
}

.why-card-payments .why-card-desc {
    margin-bottom: 0;
}

/* Marquee carousel */
.payment-marquee {
    position: relative;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
    background: rgba(255, 255, 255, 0.015);
    border-radius: 12px;
    padding: 16px 0;
    margin-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.marquee-track {
    display: flex;
    gap: 20px;
    animation: marqueeScroll 20s linear infinite;
    width: max-content;
}

.why-card-payments:hover .marquee-track {
    animation-play-state: paused;
}

.pay-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.65;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.pay-logo:hover {
    opacity: 1;
    transform: scale(1.1);
}

.pay-logo svg {
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ---- Small cards row ---- */
.why-bottom-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.why-card-small {
    padding: 36px;
}

.why-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255, 45, 45, 0.15), rgba(255, 45, 45, 0.03));
    border: 1px solid rgba(255, 45, 45, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red-primary);
    margin-bottom: 20px;
    box-shadow:
        0 0 30px rgba(255, 45, 45, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.4s ease;
}

.why-card-small:hover .why-card-icon {
    transform: scale(1.1);
    box-shadow:
        0 0 40px rgba(255, 45, 45, 0.2),
        0 0 80px rgba(255, 45, 45, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* Stat callout number */
.why-card-stat {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 40px;
    letter-spacing: 1px;
    line-height: 1;
    margin-bottom: 8px;
    display: block;
    background: linear-gradient(135deg, #ffffff 30%, var(--red-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: filter 0.3s ease;
}

.why-card-small:hover .why-card-stat {
    filter: drop-shadow(0 0 12px rgba(255, 45, 45, 0.4));
}

.why-card-small .why-card-title {
    font-size: 20px;
    margin-bottom: 6px;
}

.why-card-small .why-card-desc {
    font-size: 13px;
    line-height: 1.7;
}

/* Lightning flash on hover */
.why-card-small:last-child:hover .why-card-icon {
    animation: iconFlash 0.6s ease;
}

@keyframes iconFlash {
    0% { box-shadow: 0 0 30px rgba(255, 45, 45, 0.1); }
    30% { box-shadow: 0 0 60px rgba(255, 45, 45, 0.35), 0 0 100px rgba(255, 45, 45, 0.1); }
    100% { box-shadow: 0 0 40px rgba(255, 45, 45, 0.2); }
}

/* ---- 24/7 Support Card ---- */
.why-card-support {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 40px;
}

.support-header {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.online-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #22c55e;
    background: rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(34, 197, 94, 0.15);
    padding: 6px 14px;
    border-radius: 20px;
    width: fit-content;
}

.online-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(34, 197, 94, 0.6);
    animation: dotPulse 2s ease-in-out infinite;
    position: relative;
}

.online-dot::after {
    content: '';
    position: absolute;
    inset: -4px;
    border: 1px solid rgba(34, 197, 94, 0.4);
    border-radius: 50%;
    animation: dotRipple 2s ease-in-out infinite;
}

@keyframes dotRipple {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(2); opacity: 0; }
}

.support-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 34px;
    letter-spacing: 0.5px;
    color: var(--text-primary);
    margin-top: 4px;
}

/* Support Panel (fake UI) */
.support-panel {
    flex: 1;
    background: rgba(8, 8, 8, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
    position: relative;
}

/* Scanline overlay for terminal feel */
.support-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(255, 255, 255, 0.008) 2px,
        rgba(255, 255, 255, 0.008) 4px
    );
    pointer-events: none;
    z-index: 1;
    border-radius: 12px;
}

.panel-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.03);
}

.panel-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.5);
}

.panel-name {
    font-family: 'Courier New', monospace;
    font-size: 12px;
    color: var(--text-muted);
}

/* Blinking cursor after panel name */
.panel-name::after {
    content: '|';
    animation: cursorBlink 1s step-end infinite;
    color: var(--red-primary);
    margin-left: 2px;
}

@keyframes cursorBlink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.panel-body {
    display: flex;
    flex: 1;
}

.panel-sidebar {
    width: 120px;
    padding: 12px 0;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.sidebar-item {
    padding: 8px 16px;
    font-size: 12px;
    color: var(--text-muted);
    cursor: default;
    transition: all 0.2s ease;
    border-left: 2px solid transparent;
}

.sidebar-item.active {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.03);
    border-left-color: var(--red-primary);
}

.panel-content {
    flex: 1;
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ticket-header {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 1px;
    color: var(--text-primary);
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.ticket-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ticket-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.ticket-value {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
}

.ticket-resolved {
    color: #22c55e;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 1px;
    background: rgba(34, 197, 94, 0.1);
    padding: 2px 8px;
    border-radius: 4px;
}

.ticket-online {
    color: #22c55e;
}

.satisfaction-bar {
    height: 4px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 2px;
    margin-top: 4px;
    overflow: hidden;
}

.satisfaction-fill {
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--red-primary), #22c55e);
    border-radius: 2px;
    transition: width 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.satisfaction-fill.animate {
    width: 98%;
}

/* ============================================
   Products Section
   ============================================ */

.products {
    position: relative;
    padding: 120px 0;
    background: var(--bg-primary);
    overflow: hidden;
}

.products::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.products::after {
    content: '';
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 45, 45, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.products-glow {
    position: absolute;
    bottom: -200px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 45, 45, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

/* ─── Cases Promo Section ─── */

.cases-promo {
    position: relative;
    padding: 80px 0;
    background: var(--bg-primary);
    overflow: hidden;
}

.cases-promo-glow {
    position: absolute;
    top: 50%;
    right: 15%;
    transform: translateY(-50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 45, 45, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.cases-promo-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.cases-promo-content {
    flex: 1;
}

.cases-promo-desc {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 440px;
}

.cases-promo-images {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 0;
    position: relative;
}

.cases-promo-img {
    width: 200px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.6));
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.cases-promo-standard {
    transform: rotate(-6deg) translateX(20px);
    z-index: 1;
    animation: promoFloat 4s ease-in-out infinite;
}

.cases-promo-premium {
    transform: rotate(6deg) translateX(-20px);
    z-index: 2;
    animation: promoFloat 4s ease-in-out infinite -2s;
}

.cases-promo-images:hover .cases-promo-standard {
    transform: rotate(-10deg) translateX(10px) scale(1.05);
}

.cases-promo-images:hover .cases-promo-premium {
    transform: rotate(10deg) translateX(-10px) scale(1.05);
}

@keyframes promoFloat {
    0%, 100% { translate: 0 0; }
    50% { translate: 0 -8px; }
}

@media (max-width: 768px) {
    .cases-promo {
        padding: 60px 0;
    }

    .cases-promo-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
        padding: 0 20px;
    }

    .cases-promo-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .cases-promo-img {
        width: 150px;
    }
}

/* ─── Products Section ─── */

.products-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

.products-header {
    margin-bottom: 40px;
}

/* Filter tabs — Apple liquid glass */
.product-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 48px;
}

.filter-btn {
    padding: 8px 20px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: rgba(255, 255, 255, 0.9);
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    border-color: rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.filter-btn.active {
    background: rgba(255, 45, 45, 0.15);
    border-color: rgba(255, 45, 45, 0.4);
    color: #fff;
}

/* Product grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* Product card */
.product-card {
    position: relative;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    text-decoration: none;
    display: block;
    opacity: 0;
    transform: translateY(20px);
}

.product-card.visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.product-card.hidden {
    display: none;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(255, 45, 45, 0.08);
    border-color: rgba(255, 45, 45, 0.2);
}

.product-card.visible:hover {
    transform: translateY(-4px);
}

/* Card image */
.product-card-img {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.product-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card:hover .product-card-img img {
    transform: scale(1.05);
}

/* Shine sweep on hover */
.product-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        transparent 40%,
        rgba(255, 255, 255, 0.06) 45%,
        rgba(255, 255, 255, 0.12) 50%,
        rgba(255, 255, 255, 0.06) 55%,
        transparent 60%
    );
    transform: translateX(-150%);
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
    z-index: 2;
    border-radius: 16px;
}

.product-card:hover::after {
    transform: translateX(150%);
}

/* Badge */
.product-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 4px 12px;
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-badge.bestseller {
    background: var(--red-primary);
    color: #fff;
}

.product-badge.entry-fee {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Card info */
.product-card-info {
    padding: 16px 20px 20px;
}

.product-game {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.4);
}

.product-name {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin: 4px 0 8px;
}

.product-price {
    font-family: var(--font-body);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.product-price span {
    color: #fff;
    font-weight: 600;
}

/* ============================================
   FAQ Section
   ============================================ */

.faq-section {
    position: relative;
    padding: 120px 0;
    background: var(--bg-primary);
    overflow: hidden;
}

.faq-glow {
    position: absolute;
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 45, 45, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

.faq-header {
    margin-bottom: 48px;
    text-align: center;
}

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

.faq-item {
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: linear-gradient(165deg, #161616 0%, #0e0e0e 100%);
    overflow: hidden;
    transition: border-color 0.2s ease;
    opacity: 0;
    transform: translateY(16px);
}

.faq-item.visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s ease, transform 0.5s ease, border-color 0.2s ease;
}

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

.faq-item.faq-open {
    border-color: rgba(255, 45, 45, 0.3);
    box-shadow: inset 3px 0 0 var(--red-primary), 0 4px 20px rgba(255, 45, 45, 0.06);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: none;
    border: none;
    color: #fff;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    gap: 16px;
}

.faq-chevron {
    color: rgba(255, 255, 255, 0.35);
    transition: transform 0.2s ease, color 0.2s ease;
    flex-shrink: 0;
}

.faq-item.faq-open .faq-chevron {
    transform: rotate(180deg);
    color: var(--red-primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
}

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

.faq-answer-inner {
    padding: 0 24px 20px;
    font-family: var(--font-body);
    font-size: 15px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
}

/* ============================================
   Footer
   ============================================ */

.site-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 48px 0;
    background: linear-gradient(180deg, #080808 0%, #0a0a0a 100%);
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--red-primary), transparent);
    opacity: 0.5;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-copy {
    font-family: var(--font-body);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.3);
    margin: 4px 0 0;
}

.footer-links {
    display: flex;
    gap: 28px;
}

.footer-links a {
    font-family: var(--font-body);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: color 0.2s ease;
}

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

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-content {
        align-items: center;
    }

    .hero-subtitle {
        max-width: 500px;
    }

    .hero-card-area {
        min-height: 350px;
    }

    .game-card {
        left: 50%;
        transform: translateX(-50%);
    }

    .why-us-grid {
        grid-template-columns: 1fr;
    }

    .why-card-stat {
        font-size: 30px;
    }

    .why-card-support {
        min-height: 400px;
    }

    .support-title {
        font-size: 28px;
    }

    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 0 20px;
    }

    .social-icons {
        display: none;
    }

    .header-nav {
        gap: 0;
    }

    .nav-link {
        padding: 8px 12px;
        font-size: 13px;
    }

    .hero-container {
        padding: 0 20px;
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .why-us-container {
        padding: 0 20px;
    }

    .why-us {
        padding: 80px 0;
    }

    .why-bottom-row {
        grid-template-columns: 1fr;
    }

    .panel-sidebar {
        display: none;
    }

    .why-card {
        padding: 28px;
    }

    .why-card-icon {
        width: 56px;
        height: 56px;
    }

    .why-card-stat {
        font-size: 26px;
    }

    .support-title {
        font-size: 26px;
    }

    .products {
        padding: 80px 0;
    }

    .products-container {
        padding: 0 20px;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-filters {
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-bottom: 8px;
    }

    .product-filters::-webkit-scrollbar {
        display: none;
    }

    .filter-btn {
        white-space: nowrap;
    }

    .faq-section {
        padding: 80px 0;
    }

    .faq-container {
        padding: 0 20px;
    }

    .faq-question {
        padding: 18px 20px;
        font-size: 15px;
    }

    .faq-answer-inner {
        padding: 0 20px 18px;
        font-size: 14px;
    }

    .footer-container {
        padding: 0 20px;
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-links {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
}
