/* =============================================
   GozarData Gaming Landing Page
   Dark theme with neon purple/cyan accents
   Scoped under .gaming-landing
   ============================================= */

:root {
    --gaming-bg: #0a0a0f;
    --gaming-bg-alt: #0e0e16;
    --gaming-bg-card: #1a1a2e;
    --gaming-bg-card-hover: #222240;
    --gaming-accent-primary: #7c3aed;
    --gaming-accent-secondary: #06b6d4;
    --gaming-accent-glow: rgba(124, 58, 237, 0.4);
    --gaming-accent-glow-cyan: rgba(6, 182, 212, 0.4);
    --gaming-text: #f1f5f9;
    --gaming-text-muted: #94a3b8;
    --gaming-border: rgba(124, 58, 237, 0.2);
    --gaming-gradient: linear-gradient(135deg, #7c3aed, #06b6d4);
}

/* === Base === */
.gaming-landing {
    background-color: var(--gaming-bg);
    color: var(--gaming-text);
    font-family: 'IRANYekan', 'Tahoma', sans-serif;
    overflow-x: hidden;
    direction: rtl;
}

.gaming-landing *::selection {
    background: var(--gaming-accent-primary);
    color: #fff;
}

.gaming-landing a {
    color: var(--gaming-accent-secondary);
    transition: color 0.3s ease;
}

.gaming-landing a:hover {
    color: var(--gaming-accent-primary);
    text-decoration: none;
}

.gaming-landing .section-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: var(--gaming-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gaming-landing .section-subtitle {
    color: var(--gaming-text-muted);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

.gaming-landing section {
    padding: 80px 0;
    position: relative;
}

/* === Navbar === */
.gaming-nav {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1050;
    padding: 15px 0;
    transition: all 0.4s ease;
    background: transparent;
    direction: rtl;
}

.gaming-nav .container {
    display: flex;
    align-items: center;
}

.gaming-nav .navbar-nav {
    flex-direction: row;
    gap: 0;
}

@media (min-width: 993px) {
    .gaming-nav .navbar-collapse {
        display: flex !important;
        flex-grow: 1;
        justify-content: space-between;
    }
}

.gaming-nav.scrolled {
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    padding: 12px 0;
}

.gaming-nav .navbar-brand img {
    height: 40px;
}

.gaming-nav .nav-link {
    color: var(--gaming-text) !important;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 16px !important;
    transition: color 0.3s ease;
    position: relative;
}

.gaming-nav .nav-link:hover,
.gaming-nav .nav-link.active {
    color: var(--gaming-accent-secondary) !important;
}

.gaming-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--gaming-gradient);
    transition: width 0.3s ease;
}

.gaming-nav .nav-link:hover::after {
    width: 100%;
}

.gaming-nav .nav-buttons {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.gaming-nav .btn-login {
    color: var(--gaming-text);
    border: 1px solid var(--gaming-border);
    border-radius: 8px;
    padding: 6px 20px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.gaming-nav .btn-login:hover {
    border-color: var(--gaming-accent-primary);
    color: var(--gaming-accent-primary);
}

.gaming-nav .btn-cta {
    background: var(--gaming-gradient);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 7px 22px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.gaming-nav .btn-cta:hover {
    box-shadow: 0 0 20px var(--gaming-accent-glow);
    transform: translateY(-1px);
    color: #fff;
}

.gaming-nav .navbar-toggler {
    border: 1px solid var(--gaming-border);
    padding: 4px 10px;
}

.gaming-nav .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(241,245,249,0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* === Hero === */
/* === Hero Section === */
.gaming-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
}

/* --- Animated Background --- */
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

/* Perspective grid */
.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(124, 58, 237, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(124, 58, 237, 0.06) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 30%, transparent 80%);
    animation: heroGridPulse 8s ease-in-out infinite;
}

@keyframes heroGridPulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* Gradient orbs */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.35;
}

.hero-orb--purple {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #7c3aed 0%, transparent 70%);
    top: -10%;
    right: 10%;
    animation: heroOrbFloat 12s ease-in-out infinite;
}

.hero-orb--cyan {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #06b6d4 0%, transparent 70%);
    bottom: -5%;
    left: 5%;
    animation: heroOrbFloat 10s ease-in-out infinite reverse;
}

@keyframes heroOrbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -20px) scale(1.05); }
    66% { transform: translate(-20px, 15px) scale(0.95); }
}

/* CRT scanlines overlay */
.hero-scanlines {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 0, 0, 0.03) 2px,
        rgba(0, 0, 0, 0.03) 4px
    );
    pointer-events: none;
}

/* --- Hero Layout --- */
.gaming-hero .hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-row {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-text {
    flex: 1;
    min-width: 0;
    text-align: right;
}

.hero-visual {
    flex: 0 0 420px;
    max-width: 420px;
}

/* --- Hero Badge --- */
.gaming-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid var(--gaming-border);
    color: var(--gaming-text-muted);
    font-size: 0.85rem;
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    display: inline-block;
    animation: heroBadgePulse 2s ease-in-out infinite;
}

@keyframes heroBadgePulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); }
    50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
}

/* --- Hero Typography --- */
.gaming-hero h1 {
    font-size: 3.8rem;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 1.2rem;
    color: var(--gaming-text);
}

.hero-h1-accent {
    background: var(--gaming-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gaming-hero .hero-subtitle {
    font-size: 1.15rem;
    color: var(--gaming-text-muted);
    max-width: 520px;
    line-height: 1.9;
    margin-bottom: 2rem;
}

/* --- Hero Buttons --- */
.gaming-hero .btn-hero-primary {
    background: var(--gaming-gradient);
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 14px 36px;
    font-size: 1.05rem;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-block;
    margin: 0 0 10px 12px;
}

.gaming-hero .btn-hero-primary:hover {
    box-shadow: 0 0 30px var(--gaming-accent-glow), 0 0 60px rgba(124, 58, 237, 0.2);
    transform: translateY(-2px);
    color: #fff;
}

.gaming-hero .btn-hero-secondary {
    background: transparent;
    color: var(--gaming-text-muted);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 12px;
    padding: 13px 28px;
    font-size: 1.05rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
    margin: 0 0 10px 0;
}

.gaming-hero .btn-hero-secondary:hover {
    border-color: var(--gaming-accent-secondary);
    color: var(--gaming-accent-secondary);
    background: rgba(6, 182, 212, 0.05);
}

/* --- Hero Stats --- */
.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(124, 58, 237, 0.1);
}

.hero-stats .stat-item {
    text-align: center;
}

.hero-stats .stat-number {
    font-size: 2rem;
    font-weight: 900;
    background: var(--gaming-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    line-height: 1;
}

.hero-stats .stat-label {
    font-size: 0.8rem;
    color: var(--gaming-text-muted);
    margin-top: 6px;
}

/* === Ping Dashboard Visual === */
.ping-dashboard {
    background: rgba(15, 15, 25, 0.8);
    border: 1px solid rgba(124, 58, 237, 0.15);
    border-radius: 16px;
    padding: 0;
    overflow: hidden;
    backdrop-filter: blur(20px);
    box-shadow:
        0 0 60px rgba(124, 58, 237, 0.08),
        0 20px 60px rgba(0, 0, 0, 0.4);
    animation: pdFloat 6s ease-in-out infinite;
}

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

/* Dashboard header */
.pd-header {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    border-bottom: 1px solid rgba(124, 58, 237, 0.1);
    background: rgba(124, 58, 237, 0.03);
}

.pd-dots {
    display: flex;
    gap: 6px;
}

.pd-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.pd-dot--red { background: #ef4444; }
.pd-dot--yellow { background: #f59e0b; }
.pd-dot--green { background: #22c55e; }

.pd-title {
    flex: 1;
    text-align: center;
    font-size: 0.75rem;
    color: var(--gaming-text-muted);
    font-family: 'Consolas', 'Monaco', monospace;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.pd-status {
    font-size: 0.7rem;
    color: #22c55e;
    font-family: 'Consolas', monospace;
    display: flex;
    align-items: center;
    gap: 5px;
}

.pd-status i {
    font-size: 6px;
    animation: heroBadgePulse 2s ease-in-out infinite;
}

/* Route visualization */
.pd-route {
    display: flex;
    align-items: center;
    padding: 20px 16px;
    gap: 0;
}

.pd-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.pd-node i {
    font-size: 1.2rem;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.2);
}

.pd-node--start i {
    color: var(--gaming-accent-primary);
}

.pd-node--end i {
    color: var(--gaming-accent-secondary);
    background: rgba(6, 182, 212, 0.1);
    border-color: rgba(6, 182, 212, 0.2);
}

.pd-node span {
    font-size: 0.7rem;
    color: var(--gaming-text-muted);
}

.pd-path {
    flex: 1;
    height: 40px;
    position: relative;
}

.pd-path-svg {
    width: 100%;
    height: 100%;
}

.pd-path-line {
    stroke-dasharray: 6, 4;
    animation: pdPathDash 3s linear infinite;
}

@keyframes pdPathDash {
    to { stroke-dashoffset: -30; }
}

/* Ping metrics */
.pd-metrics {
    display: flex;
    gap: 12px;
    padding: 0 16px 16px;
}

.pd-metric {
    flex: 1;
    background: rgba(10, 10, 15, 0.6);
    border-radius: 10px;
    padding: 10px;
    border: 1px solid rgba(124, 58, 237, 0.08);
}

.pd-metric-label {
    font-size: 0.65rem;
    color: var(--gaming-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Consolas', monospace;
    margin-bottom: 4px;
}

.pd-metric-value {
    font-size: 1.2rem;
    font-weight: 800;
    font-family: 'Consolas', monospace;
    margin-bottom: 6px;
}

.pd-metric-value--good { color: #22c55e; }
.pd-metric-value--warn { color: #f59e0b; }

.pd-ping-unit {
    font-size: 0.7rem;
    font-weight: 400;
    color: var(--gaming-text-muted);
    margin-right: 2px;
}

.pd-metric-bar {
    height: 3px;
    background: rgba(124, 58, 237, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.pd-metric-fill {
    height: 100%;
    background: var(--gaming-gradient);
    border-radius: 3px;
    transition: width 1s ease;
}

/* Server list */
.pd-servers {
    padding: 0 16px 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.pd-server {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 8px;
    background: rgba(10, 10, 15, 0.4);
    border: 1px solid transparent;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.pd-server--active {
    border-color: rgba(34, 197, 94, 0.2);
    background: rgba(34, 197, 94, 0.05);
}

.pd-server img {
    width: 20px;
    height: 15px;
    border-radius: 2px;
    object-fit: cover;
}

.pd-server-name {
    flex: 1;
    color: var(--gaming-text-muted);
    font-family: 'Consolas', monospace;
}

.pd-server-ping {
    font-family: 'Consolas', monospace;
    color: #22c55e;
    font-size: 0.75rem;
    font-weight: 600;
}

.pd-server--active .pd-server-name {
    color: var(--gaming-text);
}

.pd-server i {
    color: #22c55e;
    font-size: 0.75rem;
}

/* === Games Marquee === */
.gaming-games {
    background: var(--gaming-bg-alt);
    overflow: hidden;
}

.games-marquee {
    overflow: hidden;
    padding: 10px 0;
}

.games-marquee-track {
    display: flex;
    gap: 16px;
    width: max-content;
    padding: 8px 0;
}

.games-marquee-track--rtl {
    animation: marqueeRtl 30s linear infinite;
}

.games-marquee-track--ltr {
    animation: marqueeLtr 30s linear infinite;
}

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

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

.game-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--gaming-bg-card);
    border: 1px solid var(--gaming-border);
    border-radius: 50px;
    padding: 10px 24px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gaming-text);
    white-space: nowrap;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.game-pill:hover {
    border-color: var(--gaming-accent-primary);
    box-shadow: 0 0 20px var(--gaming-accent-glow);
    background: var(--gaming-bg-card-hover);
}

.game-pill-icon {
    font-size: 1.2rem;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* === Features (Before/After) === */
.gaming-features {
    background: var(--gaming-bg);
}

.compare-row {
    display: flex;
    flex-direction: row-reverse;
    align-items: stretch;
    gap: 0;
    margin-bottom: 60px;
    justify-content: center;
}

.compare-card {
    flex: 1;
    max-width: 380px;
    background: var(--gaming-bg-card);
    border: 1px solid var(--gaming-border);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
}

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

.compare-card--before {
    border-color: rgba(239, 68, 68, 0.2);
}

.compare-card--before:hover {
    box-shadow: 0 0 30px rgba(239, 68, 68, 0.15);
}

.compare-card--after {
    border-color: rgba(34, 197, 94, 0.2);
}

.compare-card--after:hover {
    box-shadow: 0 0 30px rgba(34, 197, 94, 0.15);
}

.compare-header {
    padding: 16px 24px;
    display: flex;
    flex-direction: row;
    direction: rtl;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    font-weight: 700;
}

.compare-card--before .compare-header {
    background: rgba(239, 68, 68, 0.08);
    color: #f87171;
}

.compare-card--before .compare-header i {
    font-size: 1.1rem;
}

.compare-card--after .compare-header {
    background: rgba(34, 197, 94, 0.08);
    color: #4ade80;
}

.compare-card--after .compare-header i {
    font-size: 1.1rem;
}

.compare-body {
    padding: 24px;
}

.compare-stat {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(124, 58, 237, 0.06);
}

.compare-stat:last-of-type {
    border-bottom: none;
}

.compare-stat-label {
    font-size: 0.85rem;
    color: var(--gaming-text-muted);
    font-family: 'Consolas', monospace;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.compare-stat-value {
    font-size: 1.1rem;
    font-weight: 800;
    font-family: 'Consolas', monospace;
}

.compare-stat-value--bad {
    color: #f87171;
}

.compare-stat-value--good {
    color: #4ade80;
}

.compare-bar {
    height: 4px;
    background: rgba(124, 58, 237, 0.1);
    border-radius: 4px;
    overflow: hidden;
    margin: 16px 0 12px;
}

.compare-bar-fill {
    height: 100%;
    border-radius: 4px;
    transition: width 1.5s ease;
}

.compare-bar-fill--bad {
    background: linear-gradient(90deg, #ef4444, #f87171);
}

.compare-bar-fill--good {
    background: linear-gradient(90deg, #22c55e, #4ade80);
}

.compare-verdict {
    display: flex;
    flex-direction: row;
    align-items: center;
    direction: rtl;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
}

.compare-verdict--bad {
    color: #f87171;
}

.compare-verdict--good {
    color: #4ade80;
}

.compare-vs {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    z-index: 2;
}

.compare-vs span {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gaming-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 900;
    color: #fff;
    box-shadow: 0 0 30px var(--gaming-accent-glow);
    letter-spacing: 1px;
}

/* Feature highlights */
.feature-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-hl {
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: var(--gaming-bg-card);
    border: 1px solid var(--gaming-border);
    border-radius: 16px;
    transition: all 0.3s ease;
    text-align: right;
}

.feature-hl:hover {
    border-color: var(--gaming-accent-primary);
    box-shadow: 0 0 20px var(--gaming-accent-glow);
}

.feature-hl-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--gaming-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #fff;
    flex-shrink: 0;
}

.feature-hl-content {
    text-align: right;
}

.feature-hl-content h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gaming-text);
    margin-bottom: 4px;
}

.feature-hl-content p {
    font-size: 0.85rem;
    color: var(--gaming-text-muted);
    line-height: 1.6;
    margin: 0;
}

/* === Servers === */
.gaming-servers {
    background: var(--gaming-bg-alt);
}

.server-cards {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    margin-bottom: 2.5rem;
}

.server-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--gaming-bg-card);
    border: 1px solid var(--gaming-border);
    border-radius: 14px;
    padding: 14px 16px;
    transition: all 0.3s ease;
}

.server-card:hover {
    border-color: var(--gaming-accent-primary);
    box-shadow: 0 0 20px var(--gaming-accent-glow);
    transform: translateY(-3px);
}

.server-card img {
    width: 28px;
    height: 21px;
    border-radius: 3px;
    object-fit: cover;
    flex-shrink: 0;
}

.server-card-info {
    flex: 1;
    min-width: 0;
}

.server-card-name {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gaming-text);
}

.server-card-city {
    display: block;
    font-size: 0.7rem;
    color: var(--gaming-text-muted);
    font-family: 'Consolas', monospace;
}

.server-card-ping {
    font-family: 'Consolas', monospace;
    font-size: 0.8rem;
    font-weight: 700;
    color: #4ade80;
    white-space: nowrap;
}

.btn-servers-cta {
    background: transparent;
    color: var(--gaming-text);
    border: 1px solid var(--gaming-border);
    border-radius: 12px;
    padding: 14px 40px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-servers-cta:hover {
    border-color: var(--gaming-accent-primary);
    color: var(--gaming-accent-secondary);
    box-shadow: 0 0 20px var(--gaming-accent-glow);
    transform: translateY(-2px);
}

/* === Pricing CTA === */
.gaming-pricing {
    background: var(--gaming-bg);
    text-align: center;
}

.pricing-banner {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    padding: 60px 40px;
}

.pricing-banner-bg {
    position: absolute;
    inset: 0;
    background: var(--gaming-gradient);
    opacity: 0.12;
}

.pricing-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1px;
    background: var(--gaming-gradient);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.pricing-banner-content {
    position: relative;
    z-index: 2;
}

.pricing-banner-content h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gaming-text);
    margin-bottom: 0.8rem;
}

.pricing-banner-content p {
    color: var(--gaming-text-muted);
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

.btn-pricing {
    background: var(--gaming-gradient);
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 14px 44px;
    font-size: 1.1rem;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-pricing:hover {
    box-shadow: 0 0 30px var(--gaming-accent-glow);
    transform: translateY(-2px);
    color: #fff;
}

/* === Profile Dropdown === */
.gaming-nav .nav-profile {
    position: relative;
    margin-right: 12px;
}

.gaming-nav .nav-profile .profile-toggle {
    background: var(--gaming-bg-card);
    border: 1px solid var(--gaming-border);
    border-radius: 10px;
    color: var(--gaming-text);
    padding: 6px 16px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-family: 'IRANYekan', 'Tahoma', sans-serif;
}

.gaming-nav .nav-profile .profile-toggle:hover {
    border-color: var(--gaming-accent-primary);
    box-shadow: 0 0 12px var(--gaming-accent-glow);
}

.gaming-nav .nav-profile .profile-toggle .profile-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--gaming-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: #fff;
}

.gaming-nav .nav-profile .profile-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: auto;
    background: var(--gaming-bg-card);
    border: 1px solid var(--gaming-border);
    border-radius: 12px;
    min-width: 200px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.25s ease;
    z-index: 1060;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    direction: rtl;
    text-align: right;
}

.gaming-nav .nav-profile:hover .profile-dropdown,
.gaming-nav .nav-profile .profile-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.gaming-nav .nav-profile .profile-dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    color: var(--gaming-text-muted);
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.gaming-nav .nav-profile .profile-dropdown a:hover {
    background: rgba(124, 58, 237, 0.1);
    color: var(--gaming-text);
}

.gaming-nav .nav-profile .profile-dropdown a i {
    width: 18px;
    text-align: center;
    font-size: 0.85rem;
}

.gaming-nav .nav-profile .profile-dropdown .dropdown-divider {
    border-top: 1px solid var(--gaming-border);
    margin: 6px 0;
}

.gaming-nav .nav-profile .profile-dropdown a.text-danger {
    color: #ef4444 !important;
}

.gaming-nav .nav-profile .profile-dropdown a.text-danger:hover {
    background: rgba(239, 68, 68, 0.1);
}

/* === How it Works (Timeline) === */
.gaming-how-it-works {
    background: var(--gaming-bg);
}

.steps-timeline {
    display: flex;
    justify-content: center;
    gap: 0;
    position: relative;
}

.step-item {
    text-align: center;
    flex: 1;
    max-width: 280px;
    position: relative;
    padding: 0 20px;
}

.step-icon-wrap {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1.2rem;
}

.step-icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: var(--gaming-bg-card);
    border: 2px solid var(--gaming-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--gaming-accent-secondary);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.step-item:hover .step-icon {
    border-color: var(--gaming-accent-primary);
    box-shadow: 0 0 30px var(--gaming-accent-glow);
    background: rgba(124, 58, 237, 0.1);
}

.step-num {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--gaming-gradient);
    font-size: 0.7rem;
    font-weight: 900;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.step-connector {
    position: absolute;
    top: 36px;
    left: -50%;
    right: 50%;
    height: 2px;
    background: var(--gaming-border);
    z-index: 0;
}

.step-item:first-child .step-connector {
    display: none;
}

.step-item h4 {
    color: var(--gaming-text);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.step-item p {
    color: var(--gaming-text-muted);
    font-size: 0.85rem;
    line-height: 1.7;
}

/* === Platforms === */
.gaming-platforms {
    background: var(--gaming-bg-alt);
}

.platforms-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
}

.platform-card {
    background: var(--gaming-bg-card);
    border: 1px solid var(--gaming-border);
    border-radius: 16px;
    padding: 30px 36px;
    text-align: center;
    transition: all 0.4s ease;
    min-width: 150px;
}

.platform-card:hover {
    border-color: var(--gaming-accent-secondary);
    box-shadow: 0 0 20px var(--gaming-accent-glow-cyan);
    transform: translateY(-6px);
}

.platform-card i {
    font-size: 2.5rem;
    margin-bottom: 12px;
    display: block;
    background: var(--gaming-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.platform-card span {
    color: var(--gaming-text);
    font-size: 0.95rem;
    font-weight: 600;
}

/* === FAQ === */
.gaming-faq {
    background: var(--gaming-bg-alt);
}

.faq-layout {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.faq-list {
    flex: 1;
    min-width: 0;
}

.faq-cta {
    flex: 0 0 300px;
    position: sticky;
    top: 100px;
}

/* FAQ items */
.faq-item {
    margin-bottom: 10px;
    border-radius: 14px;
    overflow: hidden;
    background: var(--gaming-bg-card);
    border: 1px solid var(--gaming-border);
    transition: border-color 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(124, 58, 237, 0.35);
}

.faq-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: right;
    direction: rtl;
    font-family: 'IRANYekan', 'Tahoma', sans-serif;
    transition: all 0.3s ease;
}

.faq-q {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--gaming-text);
    flex: 1;
    line-height: 1.6;
}

.faq-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(124, 58, 237, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.faq-icon i {
    font-size: 0.75rem;
    color: var(--gaming-accent-primary);
    transition: transform 0.3s ease;
}

.faq-toggle.active .faq-icon {
    background: var(--gaming-gradient);
}

.faq-toggle.active .faq-icon i {
    color: #fff;
    transform: rotate(45deg);
}

.faq-toggle:hover .faq-q {
    color: var(--gaming-accent-secondary);
}

/* FAQ answer (animated) */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-answer-inner {
    padding: 0 22px 20px;
    color: var(--gaming-text-muted);
    font-size: 0.9rem;
    line-height: 1.9;
    direction: rtl;
    text-align: right;
    border-top: 1px solid rgba(124, 58, 237, 0.08);
    padding-top: 14px;
    margin-top: 0;
}

/* CTA card */
.faq-cta-card {
    background: var(--gaming-bg-card);
    border: 1px solid var(--gaming-border);
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.faq-cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gaming-gradient);
}

.faq-cta-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: var(--gaming-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    font-size: 1.4rem;
    color: #fff;
}

.faq-cta-card h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--gaming-text);
    margin-bottom: 0.6rem;
}

.faq-cta-card p {
    font-size: 0.85rem;
    color: var(--gaming-text-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.btn-faq-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--gaming-gradient);
    color: #fff !important;
    border: none;
    border-radius: 12px;
    padding: 12px 28px;
    font-size: 0.95rem;
    font-weight: 700;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
}

.btn-faq-cta:hover {
    box-shadow: 0 0 25px var(--gaming-accent-glow);
    transform: translateY(-2px);
    color: #fff !important;
}

.faq-cta-help {
    margin-top: 1.2rem;
    padding-top: 1rem;
    border-top: 1px solid var(--gaming-border);
    font-size: 0.8rem;
    color: var(--gaming-text-muted);
}

.faq-cta-help a {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--gaming-accent-secondary);
    font-weight: 600;
    margin-right: 6px;
}

.faq-cta-help a:hover {
    color: var(--gaming-accent-primary);
}

/* === Footer === */
.gaming-footer {
    background: var(--gaming-bg);
    border-top: 1px solid var(--gaming-border);
    padding: 60px 0 30px;
    direction: rtl;
    text-align: right;
}

.gaming-footer .footer-logo img {
    height: 45px;
    margin-bottom: 1rem;
}

.gaming-footer .footer-desc {
    color: var(--gaming-text-muted);
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    max-width: 300px;
}

.gaming-footer .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--gaming-bg-card);
    border: 1px solid var(--gaming-border);
    color: var(--gaming-text);
    font-size: 1rem;
    margin-left: 8px;
    transition: all 0.3s ease;
}

.gaming-footer .social-links a:hover {
    border-color: var(--gaming-accent-primary);
    color: var(--gaming-accent-primary);
    box-shadow: 0 0 15px var(--gaming-accent-glow);
}

.gaming-footer h5 {
    color: var(--gaming-text);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 1.2rem;
}

.gaming-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gaming-footer ul li {
    margin-bottom: 10px;
}

.gaming-footer ul li a {
    color: var(--gaming-text-muted);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.gaming-footer ul li a:hover {
    color: var(--gaming-accent-secondary);
    padding-right: 5px;
}

.gaming-footer .footer-bottom {
    border-top: 1px solid var(--gaming-border);
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    color: var(--gaming-text-muted);
    font-size: 0.85rem;
}

/* === Auth Page === */
.gaming-auth {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    position: relative;
    overflow: hidden;
}

/* Auth animated background */
.gaming-auth .auth-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.gaming-auth .auth-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(124, 58, 237, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(124, 58, 237, 0.06) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    animation: authGridPulse 8s ease-in-out infinite;
}

@keyframes authGridPulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.8; }
}

.gaming-auth .auth-bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    animation: authOrbFloat 12s ease-in-out infinite;
}

.gaming-auth .auth-bg-orb--purple {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.25), transparent 70%);
    top: -150px;
    right: -100px;
}

.gaming-auth .auth-bg-orb--cyan {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.2), transparent 70%);
    bottom: -100px;
    left: -100px;
    animation-delay: -6s;
}

@keyframes authOrbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -20px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

/* Auth wrapper (split layout container) */
.gaming-auth .auth-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 100%;
}

/* Split layout */
.auth-split {
    display: flex;
    min-height: 100vh;
    direction: rtl;
}

/* Brand panel takes 40% */
.auth-brand-panel {
    flex: 0 0 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    position: relative;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.08), rgba(6, 182, 212, 0.05));
    border-right: 1px solid rgba(124, 58, 237, 0.12);
}

.auth-brand-content {
    max-width: 420px;
    text-align: right;
}

.auth-brand-logo img {
    height: 50px;
    margin-bottom: 32px;
}

.auth-brand-title {
    font-size: 2.4rem;
    font-weight: 900;
    background: var(--gaming-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    line-height: 1.4;
}

.auth-brand-desc {
    color: var(--gaming-text-muted);
    font-size: 1.1rem;
    margin-bottom: 48px;
    line-height: 1.8;
}

.auth-brand-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.auth-brand-feature {
    display: flex;
    align-items: center;
    gap: 16px;
}

.auth-brand-feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(124, 58, 237, 0.12);
    border: 1px solid rgba(124, 58, 237, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gaming-accent-primary);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.auth-brand-feature strong {
    display: block;
    color: var(--gaming-text);
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.auth-brand-feature span {
    color: var(--gaming-text-muted);
    font-size: 0.82rem;
}

/* Form panel (right side on RTL) */
/* Form panel takes 60% */
.auth-form-panel {
    flex: 0 0 60%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

/* Auth card */
.gaming-auth .auth-card {
    width: 100%;
    max-width: 420px;
    background: rgba(26, 26, 46, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(124, 58, 237, 0.15);
    border-radius: 24px;
    padding: 40px 32px;
    text-align: right;
    direction: rtl;
}

/* Section header with icon */
.auth-section-header {
    text-align: center;
    margin-bottom: 28px;
}

.auth-section-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: var(--gaming-gradient);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 16px;
    box-shadow: 0 8px 24px rgba(124, 58, 237, 0.3);
}

.gaming-auth .auth-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gaming-text);
    margin: 0 0 8px;
}

.gaming-auth .auth-subtitle {
    color: var(--gaming-text-muted);
    font-size: 0.88rem;
    margin-bottom: 0;
    line-height: 1.7;
    text-align: center;
}

/* Field with label */
.auth-field {
    margin-bottom: 16px;
}

.auth-label {
    display: block;
    color: var(--gaming-text-muted);
    font-size: 0.82rem;
    margin-bottom: 6px;
    font-weight: 500;
}

.auth-label i {
    margin-left: 4px;
    font-size: 0.75rem;
    color: var(--gaming-accent-primary);
}

.gaming-auth .auth-input {
    background: rgba(10, 10, 15, 0.6);
    border: 1px solid var(--gaming-border);
    border-radius: 12px;
    color: var(--gaming-text);
    padding: 13px 16px;
    font-size: 0.95rem;
    width: 100%;
    transition: all 0.3s ease;
    font-family: 'IRANYekan', 'Tahoma', sans-serif;
    direction: ltr;
    text-align: center;
}

.gaming-auth .auth-input:focus {
    outline: none;
    border-color: var(--gaming-accent-primary);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.15);
    background: rgba(10, 10, 15, 0.8);
}

.gaming-auth .auth-input::placeholder {
    color: var(--gaming-text-muted);
    direction: rtl;
    text-align: center;
    font-size: 0.88rem;
}

/* Main button */
.gaming-auth .auth-btn {
    background: var(--gaming-gradient);
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 13px;
    font-size: 1rem;
    font-weight: 700;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'IRANYekan', 'Tahoma', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 8px;
}

.gaming-auth .auth-btn:hover {
    box-shadow: 0 8px 30px rgba(124, 58, 237, 0.35);
    transform: translateY(-1px);
}

.gaming-auth .auth-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Outline button */
.gaming-auth .auth-btn-outline {
    background: transparent;
    color: var(--gaming-text);
    border: 1px solid var(--gaming-border);
    border-radius: 12px;
    padding: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'IRANYekan', 'Tahoma', sans-serif;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.gaming-auth .auth-btn-outline:hover {
    border-color: var(--gaming-accent-secondary);
    color: var(--gaming-accent-secondary);
    text-decoration: none;
}

/* Telegram button */
.auth-telegram-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(0, 136, 204, 0.3);
    border-radius: 12px;
    background: rgba(0, 136, 204, 0.08);
    color: var(--gaming-text);
    font-size: 0.92rem;
    font-weight: 600;
    font-family: 'IRANYekan', 'Tahoma', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.auth-telegram-btn:hover {
    border-color: rgba(0, 136, 204, 0.5);
    background: rgba(0, 136, 204, 0.15);
    color: var(--gaming-text);
    text-decoration: none;
}

.auth-telegram-btn .fab {
    font-size: 1.1rem;
    color: #0088cc;
}

/* Links row */
.auth-links-row {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin: 14px 0;
}

.gaming-auth .auth-link {
    color: var(--gaming-text-muted);
    font-size: 0.83rem;
    cursor: pointer;
    transition: color 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.gaming-auth .auth-link:hover {
    color: var(--gaming-accent-secondary);
    text-decoration: none;
}

.gaming-auth .auth-link i {
    font-size: 0.75rem;
    color: var(--gaming-accent-primary);
}

/* Error */
.gaming-auth .auth-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.25);
    border-radius: 10px;
    color: #fca5a5;
    padding: 10px 16px;
    font-size: 0.83rem;
    margin: 12px 0;
    text-align: right;
}

.gaming-auth .auth-error ul {
    margin: 0;
    padding-right: 16px;
    list-style: disc;
}

/* Info box */
.gaming-auth .auth-info {
    background: rgba(6, 182, 212, 0.08);
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: 10px;
    color: var(--gaming-accent-secondary);
    padding: 10px 16px;
    font-size: 0.83rem;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Captcha */
.gaming-auth .auth-captcha {
    background: rgba(10, 10, 15, 0.4);
    border: 1px solid var(--gaming-border);
    border-radius: 12px;
    padding: 12px;
    margin: 12px 0;
    text-align: center;
}

.gaming-auth .auth-captcha img {
    border-radius: 6px;
    margin-bottom: 8px;
}

.gaming-auth .auth-captcha-refresh {
    background: transparent;
    border: 1px solid var(--gaming-border);
    color: var(--gaming-accent-secondary);
    border-radius: 8px;
    padding: 4px 12px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
    margin-right: 8px;
}

.gaming-auth .auth-captcha-refresh:hover {
    border-color: var(--gaming-accent-primary);
    color: var(--gaming-accent-primary);
}

.gaming-auth .auth-captcha-input {
    background: rgba(26, 26, 46, 0.6);
    border: 1px solid var(--gaming-border);
    border-radius: 8px;
    color: var(--gaming-text);
    padding: 8px 12px;
    font-size: 0.9rem;
    width: 60%;
    margin-top: 8px;
    text-align: center;
    direction: ltr;
}

.gaming-auth .auth-captcha-input:focus {
    outline: none;
    border-color: var(--gaming-accent-primary);
}

/* Timer */
.gaming-auth .auth-timer {
    color: var(--gaming-text-muted);
    font-size: 0.83rem;
    margin: 10px 0;
    text-align: center;
}

.gaming-auth .auth-timer span {
    color: var(--gaming-accent-secondary);
    font-weight: 700;
}

/* Footer */
.gaming-auth .auth-footer {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(124, 58, 237, 0.1);
}

.auth-footer-divider {
    height: 1px;
    background: rgba(124, 58, 237, 0.1);
    margin: 14px 0;
}

.auth-footer-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.gaming-auth .auth-footer a,
.auth-footer-links a {
    color: var(--gaming-text-muted);
    font-size: 0.83rem;
    transition: color 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.gaming-auth .auth-footer a:hover,
.auth-footer-links a:hover {
    color: var(--gaming-accent-secondary);
    text-decoration: none;
}

.auth-footer-links a i {
    font-size: 0.75rem;
}

/* Spinner */
.gaming-auth .auth-spinner {
    width: 48px;
    height: 48px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    border: 3px solid transparent;
    border-radius: 50%;
    border-right-color: var(--gaming-accent-primary);
    border-top-color: var(--gaming-accent-secondary);
    animation: gaming-spin 1s infinite linear;
    margin: 20px auto;
}

@keyframes gaming-spin {
    100% { transform: rotate(360deg); }
}

/* Back link */
.gaming-auth .auth-back {
    color: var(--gaming-text-muted);
    font-size: 0.83rem;
    margin-top: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s;
}

.gaming-auth .auth-back:hover {
    color: var(--gaming-accent-secondary);
    text-decoration: none;
}

/* Input display (showing mobile/email) */
.gaming-auth .auth-input-display {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(10, 10, 15, 0.4);
    border: 1px solid rgba(124, 58, 237, 0.12);
    border-radius: 10px;
    padding: 10px 16px;
    margin-bottom: 16px;
    direction: ltr;
}

.gaming-auth .auth-input-display span {
    color: var(--gaming-text);
    font-size: 0.95rem;
    font-weight: 600;
}

.gaming-auth .auth-input-display a {
    color: var(--gaming-accent-secondary);
    font-size: 0.8rem;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.gaming-auth .auth-input-display a:hover {
    color: var(--gaming-accent-primary);
}

/* Responsive */
@media (max-width: 992px) {
    .auth-brand-panel {
        display: none;
    }
    .auth-form-panel {
        max-width: 100%;
        padding: 20px 10px;
        flex: 1;
    }
    .auth-split {
        justify-content: center;
    }
    .gaming-auth .auth-card {
        max-width: 100%;
        border-radius: 16px;
        padding: 28px 20px;
    }
}

@media (max-width: 576px) {
    .auth-form-panel {
        padding: 10px 0;
    }
    .gaming-auth .auth-card {
        padding: 24px 16px;
        border-radius: 12px;
        border: none;
    }
    .auth-section-icon {
        width: 48px;
        height: 48px;
        font-size: 1.1rem;
    }
}

/* === Livewire Page Content Wrapper === */
.gaming-page-content {
    padding-top: 70px;
    min-height: 80vh;
    position: relative;
    z-index: 1;
}

/* === Scroll Reveal Animations === */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* === Responsive === */
@media (max-width: 1200px) {
}

@media (max-width: 992px) {
    .gaming-hero {
        padding-top: 110px;
    }

    .hero-row {
        flex-direction: column;
        text-align: center;
    }

    .hero-text {
        order: 1;
    }

    .hero-visual {
        order: 2;
        flex: 0 0 auto;
        max-width: 380px;
        width: 100%;
    }

    .hero-stats {
        justify-content: center;
    }

    .gaming-hero .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .gaming-hero h1 {
        font-size: 2.8rem;
    }

    .gaming-landing section {
        padding: 60px 0;
    }

    .gaming-landing .section-title {
        font-size: 1.8rem;
    }

    .hero-stats {
        gap: 30px;
    }

    .hero-stats .stat-number {
        font-size: 1.8rem;
    }

    .gaming-nav .container {
        flex-wrap: wrap;
    }

    .gaming-nav .navbar-collapse {
        background: rgba(10, 10, 15, 0.98);
        backdrop-filter: blur(12px);
        border-radius: 12px;
        padding: 20px;
        margin-top: 10px;
        border: 1px solid var(--gaming-border);
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }

    .gaming-nav .navbar-nav {
        flex-direction: column;
    }

    .gaming-nav .nav-item {
        margin-bottom: 4px;
    }

    .gaming-nav .nav-buttons {
        flex-direction: column;
        width: 100%;
        gap: 6px;
    }

    .gaming-nav .btn-login,
    .gaming-nav .btn-cta {
        display: block;
        text-align: center;
        width: 100%;
    }

    .gaming-nav .nav-profile {
        margin-right: 0;
        margin-top: 8px;
    }

    .gaming-nav .nav-profile .profile-dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(124, 58, 237, 0.05);
        border: 1px solid var(--gaming-border);
        border-radius: 10px;
        margin-top: 8px;
        box-shadow: none;
        display: none;
    }

    .gaming-nav .nav-profile .profile-dropdown.show {
        display: block;
    }

    .compare-row {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .compare-vs {
        padding: 0;
    }

    .compare-vs span {
        width: 40px;
        height: 40px;
        font-size: 0.75rem;
    }

    .feature-highlights {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .steps-timeline {
        flex-direction: column;
        align-items: center;
        gap: 32px;
    }

    .step-connector {
        display: none;
    }

    .step-item {
        max-width: 100%;
    }

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

    .faq-layout {
        flex-direction: column;
    }

    .faq-cta {
        flex: 0 0 auto;
        position: static;
        order: -1;
    }
}

@media (max-width: 768px) {
    .gaming-hero h1 {
        font-size: 2.2rem;
    }

    .gaming-hero .hero-subtitle {
        font-size: 1.05rem;
    }

    .hero-visual {
        max-width: 340px;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }

    .hero-stats .stat-number {
        font-size: 1.6rem;
    }

    .gaming-footer .footer-col {
        margin-bottom: 30px;
    }

    .platforms-grid {
        gap: 14px;
    }

    .platform-card {
        padding: 20px 24px;
        min-width: 130px;
    }

    .platform-card i {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .gaming-hero {
        padding-top: 120px;
        min-height: auto;
        padding-bottom: 60px;
    }

    .gaming-hero h1 {
        font-size: 1.8rem;
    }

    .gaming-hero .hero-subtitle {
        font-size: 0.95rem;
    }

    .hero-visual {
        max-width: 100%;
    }

    .pd-metrics {
        flex-direction: column;
        gap: 8px;
    }

    .gaming-hero .btn-hero-primary,
    .gaming-hero .btn-hero-secondary {
        padding: 12px 28px;
        font-size: 1rem;
        display: block;
        width: 100%;
        margin: 8px 0;
    }

    .gaming-landing section {
        padding: 80px 0;
    }

    .gaming-landing .section-title {
        font-size: 1.5rem;
    }

    .server-cards {
        grid-template-columns: 1fr;
    }

    .pricing-banner {
        padding: 40px 24px;
    }
}

/* =============================================
   Mobile Bottom Tab Bar
   ============================================= */
.gaming-bottom-bar {
    display: none;
}

@media (max-width: 992px) {
    .gaming-bottom-bar {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1060;
        background: rgba(10, 10, 15, 0.92);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border-top: 1px solid var(--gaming-border);
        padding: 6px 0;
        padding-bottom: calc(6px + env(safe-area-inset-bottom, 0px));
        justify-content: space-around;
        align-items: center;
    }

    .bottom-tab {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2px;
        padding: 6px 0;
        flex: 1;
        color: var(--gaming-text-muted);
        text-decoration: none;
        font-size: 0.65rem;
        font-weight: 500;
        transition: color 0.2s ease, transform 0.15s ease;
        position: relative;
        -webkit-tap-highlight-color: transparent;
    }

    .bottom-tab i {
        font-size: 1.15rem;
        margin-bottom: 1px;
        transition: transform 0.2s ease;
    }

    .bottom-tab:hover {
        color: var(--gaming-text);
        text-decoration: none;
    }

    .bottom-tab:active {
        transform: scale(0.92);
    }

    .bottom-tab.active {
        color: var(--gaming-accent-secondary);
    }

    .bottom-tab.active::before {
        content: '';
        position: absolute;
        top: 0;
        left: 25%;
        right: 25%;
        height: 2.5px;
        background: var(--gaming-gradient);
        border-radius: 0 0 4px 4px;
    }

    .bottom-tab--cta {
        color: transparent;
        background: var(--gaming-gradient);
        -webkit-background-clip: text;
        background-clip: text;
    }

    .bottom-tab--cta i,
    .bottom-tab--cta span {
        background: var(--gaming-gradient);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .bottom-tab--cta i {
        font-size: 1.3rem;
    }

    .bottom-tab--cta::before {
        display: none !important;
    }

    /* Hide hamburger and collapse menu on mobile — bottom bar replaces it */
    .gaming-nav .navbar-toggler,
    .gaming-nav .navbar-collapse {
        display: none !important;
    }

    /* Body padding so content isn't hidden behind bottom bar */
    .gaming-landing {
        padding-bottom: 70px;
    }
}
