@media (pointer: coarse), (hover: none), (max-width: 768px) {
    .cursor-dot,
    .cursor-outline {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }
}

@media (pointer: coarse), (hover: none), (max-width: 768px), (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .animated-bg,
    .star-particles-container,
    .cursor-dot,
    .cursor-outline,
    .ripple,
    .hero-title-glow {
        display: none !important;
    }

    .hero-bg,
    .particle,
    .star-particle,
    .fade-in,
    .scale-in,
    .section-title,
    .game-card,
    .stat-item,
    .giftcard-hero,
    .panel-success-modal-content {
        animation: none !important;
        transition: none !important;
        transform: none !important;
    }

    #mainNav,
    .game-card,
    .stat-item,
    .giftcard-card,
    .panel-user-pill,
    .panel-success-modal-content,
    .support-card,
    .testimonial-card,
    .section-divider,
    .games-section,
    .hero-content,
    .hero-stats {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        box-shadow: none !important;
    }

    .hero-section {
        min-height: auto;
        padding: 88px 0 56px;
    }

    .games-section,
    .support-section,
    .testimonials-section,
    .faq-section,
    .giftcards-section,
    .games-section-accent,
    .games-section-soft {
        content-visibility: auto;
        contain-intrinsic-size: 1px 900px;
    }

    .hero-bg {
        background-attachment: scroll;
        background-size: cover;
        background-image: linear-gradient(180deg, rgba(10, 11, 16, 0.96), rgba(16, 20, 32, 0.92));
    }

    .hero-title {
        letter-spacing: 3px;
        font-size: clamp(2.4rem, 10vw, 3.4rem);
    }

    .hero-stats {
        gap: 12px;
    }

    .stat-item,
    .game-card,
    .giftcard-card,
    .support-card,
    .testimonial-card {
        border-width: 1px;
        box-shadow: none !important;
    }

    .game-card:hover,
    .navbar-brand:hover,
    #mainNav .nav-link:hover {
        transform: none !important;
    }
}

:root {
    --brand-blue: rgb(72, 125, 171);
    --brand-pink: rgb(195, 26, 112);
    --brand-white: rgb(255, 255, 255);
    --bg-dark: #0a0b10;
    --bg-card: #151820;
    --bg-card-hover: #1e2330;
    --text-light: #f8f9fa;
    --text-muted: #a0a0a0;
    --gradient-brand: linear-gradient(135deg, rgb(72, 125, 171) 0%, rgb(195, 26, 112) 100%);
    --gradient-brand-reverse: linear-gradient(135deg, rgb(195, 26, 112) 0%, rgb(72, 125, 171) 100%);
    --gradient-glow: linear-gradient(135deg, rgba(72, 125, 171, 0.4) 0%, rgba(195, 26, 112, 0.4) 100%);
    --glow-blue: 0 0 20px rgba(72, 125, 171, 0.6);
    --glow-pink: 0 0 20px rgba(195, 26, 112, 0.6);
    --glow-brand: 0 0 30px rgba(72, 125, 171, 0.4), 0 0 50px rgba(195, 26, 112, 0.3);
    --glow-brand-strong: 0 0 40px rgba(72, 125, 171, 0.8), 0 0 80px rgba(195, 26, 112, 0.6);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: 'Rajdhani', sans-serif;
    overflow-x: hidden;
    cursor: default;
}

html.custom-cursor-active,
html.custom-cursor-active body,
html.custom-cursor-active body *,
body.custom-cursor-active,
body.custom-cursor-active * {
    cursor: none !important;
}

a {
    text-decoration: none;
}

.navbar-brand-text {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.navbar-brand-text-blue {
    color: var(--brand-blue);
    text-shadow: var(--glow-blue);
}

.navbar-brand-text-pink {
    color: var(--brand-pink);
    text-shadow: var(--glow-pink);
}

.cursor-dot {
    width: 10px;
    height: 10px;
    background: var(--brand-pink);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease;
    box-shadow: 0 0 15px var(--brand-pink);
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 2px solid var(--brand-blue);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: transform 0.15s ease, width 0.3s ease, height 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 0 20px rgba(72, 125, 171, 0.4);
}

.animated-bg {
    position: fixed;
    inset: 0;
    z-index: -2;
    overflow: hidden;
}

.animated-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top, rgba(72, 125, 171, 0.18), transparent 36%), radial-gradient(circle at bottom right, rgba(195, 26, 112, 0.18), transparent 32%), linear-gradient(180deg, rgba(10, 11, 16, 0.95), rgba(10, 11, 16, 1));
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    animation: floatParticle 15s infinite;
    opacity: 0.4;
}

.particle.blue {
    background: var(--brand-blue);
    box-shadow: 0 0 10px var(--brand-blue);
}

.particle.pink {
    background: var(--brand-pink);
    box-shadow: 0 0 10px var(--brand-pink);
}

.particle.white {
    background: var(--brand-white);
    box-shadow: 0 0 15px var(--brand-white);
}

@keyframes floatParticle {
    0%,
    100% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }

    10%,
    90% {
        opacity: 0.5;
    }

    100% {
        transform: translateY(-100vh) rotate(720deg);
    }
}

#mainNav {
    background: rgba(10, 11, 16, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(72, 125, 171, 0.2);
    padding: 0.28rem 0;
    transition: all 0.3s ease;
}

#mainNav.scrolled {
    background: rgba(10, 11, 16, 0.98);
    padding: 0.2rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

#mainNav .container {
    align-items: center;
    min-height: 72px;
}

.navbar-brand {

    @media (max-width: 768px) {
        #mainNav .navbar-user-section {
            margin-left: 0;
            padding-left: 0;
            border-left: none;
        }

        #mainNav .nav-auth-item.navbar-user-section {
            width: auto;
            max-width: 320px;
            margin-top: 0.5rem;
            padding-top: 0;
            border-top: none;
            justify-self: center;
        }

        #mainNav .nav-auth-item .btn-neon-outline.navbar-btn {
            min-width: 0;
            width: 100% !important;
            max-width: 320px;
            margin: 0 auto;
        }
    }
    display: flex;
    align-items: center;
    gap: 0;
    height: 58px;
    overflow: visible;
    color: white !important;
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    transform: scale(1.02);
    text-shadow: 0 0 20px rgba(72, 125, 171, 0.5);
}

.navbar-brand-logo {
    width: 88px;
    height: 88px;
    object-fit: contain;
    display: block;
    margin-top: 9px;
    transform: translateY(4px);
    filter: drop-shadow(0 0 12px rgba(72, 125, 171, 0.34));
}

@media (min-width: 992px) {
    .navbar-brand {
        height: 64px;
        overflow: visible;
    }

    .navbar-brand-logo {
        width: 78px;
        height: 78px;
        margin-top: 2px;
        transform: none;
    }
}

.navbar-toggler {
    border: 1px solid rgba(72, 125, 171, 0.3);
    padding: 0.5rem;
    border-radius: 8px;
    position: relative;
    overflow: visible;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(72, 125, 171, 0.3);
}

.navbar-toggler-icon {
    filter: invert(1);
}

.navbar-toggler-counter {
    position: absolute;
    top: 3px;
    right: 3px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 999px;
    background: linear-gradient(135deg, #ff6ea9, #ff935c);
    color: #ffffff;
    font-size: 0.68rem;
    font-weight: 800;
    line-height: 1;
    box-shadow: 0 6px 16px rgba(255, 110, 169, 0.28);
    z-index: 2;
    border: 1px solid rgba(10, 11, 16, 0.9);
}

.navbar-toggler-counter[hidden] {
    display: none !important;
}

@media (min-width: 992px) {
    .navbar-toggler-counter {
        display: none !important;
    }
}

#mainNav .navbar-nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

#mainNav .nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8) !important;
    font-weight: 500;
    padding: 0.7rem 0.85rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-align: center;
}

#mainNav .nav-link span {
    display: inline-block;
    line-height: 1.15;
    white-space: nowrap;
}

#mainNav .nav-link:hover {
    color: white !important;
    background: rgba(72, 125, 171, 0.15);
    transform: translateY(-1px);
}

#mainNav .nav-link i {
    font-size: 0.9rem;
    color: rgb(72, 125, 171);
    transition: all 0.3s ease;
}

#mainNav .nav-link:hover i {
    color: rgb(195, 26, 112);
}

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 11, 16, 0.95) 0%, rgba(72, 125, 171, 0.3) 50%, rgba(195, 26, 112, 0.3) 100%), url('https://images.unsplash.com/photo-1542751371-adc38448a05e?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    animation: zoomBg 20s infinite alternate;
    z-index: -1;
}

@keyframes zoomBg {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.08);
    }
}

.hero-content {
    text-align: center;
    z-index: 1;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 4.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 8px;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.hero-title .text-blue {
    color: var(--brand-blue);
    text-shadow: var(--glow-blue);
}

.hero-title .text-pink {
    color: var(--brand-pink);
    text-shadow: var(--glow-pink);
}

.hero-title .text-white {
    color: var(--brand-white);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.hero-title-glow {
    position: absolute;
    inset: 0;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: blur(20px);
    opacity: 0.5;
    z-index: -1;
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 0.7;
    }
}

.hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.92);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
    margin-bottom: 2rem;
    letter-spacing: 3px;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-subtitle span {
    color: #ffffff;
    font-weight: 700;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 3rem 0;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.stat-item {
    text-align: center;
    padding: 18px 20px;
    background: rgba(7, 10, 18, 0.42);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    backdrop-filter: blur(8px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    min-width: 220px;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-brand);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-item:hover::before {
    opacity: 0.1;
}

.stat-item:hover {
    transform: translateY(-12px) scale(1.03);
    border-color: var(--brand-pink);
    box-shadow: var(--glow-brand);
}

.stat-number {
    color: #ffffff;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
}

.stat-label {
    color: rgba(255, 255, 255, 0.88);
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
}

.btn-neon,
.btn-neon-outline,
.card-btn,
.support-cta,
.support-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.4s ease;
}

.btn-neon {
    background: var(--gradient-brand) !important;
    color: white !important;
    border: none;
    padding: 15px 35px;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: var(--glow-brand);
}

.btn-neon::before,
.btn-neon-outline::before,
.card-btn::before,
.support-cta::before,
.support-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-brand-reverse);
    transition: left 0.4s ease;
    z-index: -1;
}

.btn-neon:hover::before,
.btn-neon-outline:hover::before,
.card-btn:hover::before,
.support-cta:hover::before,
.support-secondary:hover::before {
    left: 0;
}

.btn-neon:hover,
.btn-neon-outline:hover,
.card-btn:hover,
.support-cta:hover,
.support-secondary:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: var(--glow-brand-strong);
    color: white !important;
}

.btn-neon-outline {
    background: transparent !important;
    color: white !important;
    border: 2px solid rgb(72, 125, 171);
    padding: 13px 35px;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 0 20px rgba(72, 125, 171, 0.3);
}

.navbar-btn {
    padding: 8px 20px !important;
    font-size: 0.9rem !important;
    border-radius: 20px !important;
    margin-top: 5px;
}

.star-particles-container {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.star-particle {
    position: absolute;
    border-radius: 50%;
    animation: starFallSection 8s infinite linear;
    opacity: 0.7;
    box-shadow: 0 0 4px currentColor;
}

.star-particle.blue {
    background: var(--brand-blue);
    color: var(--brand-blue);
}

.star-particle.pink {
    background: var(--brand-pink);
    color: var(--brand-pink);
}

.star-particle.white {
    background: var(--brand-white);
    color: var(--brand-white);
}

.star-particle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1.5px;
    height: 1.5px;
    background: white;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 3px white;
}

@keyframes starFallSection {
    0% {
        transform: translateY(-100vh) rotate(0deg) scale(0);
        opacity: 0;
    }

    5% {
        opacity: 0.7;
        transform: translateY(-95vh) rotate(18deg) scale(1);
    }

    95% {
        opacity: 0.7;
        transform: translateY(95vh) rotate(342deg) scale(1);
    }

    100% {
        transform: translateY(100vh) rotate(360deg) scale(0);
        opacity: 0;
    }
}

.games-section {
    padding: 100px 0;
    position: relative;
}

.games-section-accent {
    background: rgba(195, 26, 112, 0.04);
}

.games-section-soft {
    background: rgba(195, 26, 112, 0.03);
}

.support-section {
    background: rgba(72, 125, 171, 0.05);
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.section-title.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-title .text-blue {
    color: var(--brand-blue);
    text-shadow: var(--glow-blue);
}

.section-title .text-pink {
    color: var(--brand-pink);
    text-shadow: var(--glow-pink);
}

.section-title .text-white {
    color: var(--brand-white);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.section-divider {
    width: 150px;
    height: 4px;
    background: var(--gradient-brand);
    margin: 0 auto 3rem;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--glow-brand);
}

.section-divider::after {
    content: '';
    position: absolute;
    inset: 0;
    left: -100%;
    background: var(--brand-white);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.game-card {
    background: var(--bg-card);
    border: 2px solid rgba(72, 125, 171, 0.3);
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    height: 100%;
    position: relative;
    opacity: 0;
    transform: translateY(50px);
}

.game-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.game-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-brand);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.game-card:hover::before {
    opacity: 0.15;
}

.game-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-brand);
    border-radius: 25px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.game-card:hover::after {
    opacity: 1;
}

.game-card:hover {
    transform: translateY(-20px) scale(1.03);
    box-shadow: var(--glow-brand-strong);
}

.game-card-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.game-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.game-card:hover img {
    transform: scale(1.25) rotate(2deg);
}

.game-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(72, 125, 171, 0.6) 50%, rgba(195, 26, 112, 0.8) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    color: white;
    font-weight: 600;
    font-size: 14px;
}

.game-card:hover .game-card-overlay {
    opacity: 1;
}

.game-card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 3;
    transform: scale(0);
    transition: transform 0.4s ease;
    color: white;
    box-shadow: var(--glow-brand);
}

.game-card:hover .game-card-badge {
    transform: scale(1);
}

.badge-popular {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
}

.badge-available {
    background: linear-gradient(135deg, #487dab, #5a9fd4);
}

.badge-new {
    background: linear-gradient(135deg, #c31a70, #d63384);
}

.card-body {
    padding: 1.5rem;
    position: relative;
    z-index: 2;
}

.card-body h5 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
}

.icon-blue {
    color: var(--brand-blue);
}

.icon-pink {
    color: var(--brand-pink);
}

.game-card:hover .card-body h5 {
    text-shadow: var(--glow-brand);
}

.card-body p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 15px;
}

.card-btn {
    width: 100%;
    padding: 12px;
    background: transparent;
    border: 2px solid var(--brand-blue);
    color: white;
    border-radius: 12px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    font-family: 'Rajdhani', sans-serif;
    letter-spacing: 1px;
}

.card-btn-solid {
    border: none;
    background: var(--gradient-brand);
}

.hover-zone {
    position: relative;
}

.hover-zone::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(72, 125, 171, 0.3) 0%, rgba(195, 26, 112, 0.2) 70%, transparent 100%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
    pointer-events: none;
}

.hover-zone:hover::after {
    width: 350px;
    height: 350px;
}

.giftcard-card {
    background: rgba(18, 22, 34, 0.88);
}

.giftcard-hero {
    height: 200px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    color: white;
    text-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.giftcard-steam {
    background: linear-gradient(135deg, rgba(72, 125, 171, 0.82), rgba(195, 26, 112, 0.82));
}

.giftcard-psn {
    background: linear-gradient(135deg, rgba(51, 114, 181, 0.9), rgba(27, 39, 73, 0.9));
}

.giftcard-xbox {
    background: linear-gradient(135deg, rgba(72, 125, 171, 0.7), rgba(31, 169, 102, 0.8));
}

.giftcard-badges {
    position: absolute;
    top: 14px;
    right: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-end;
}

.gift-badge {
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
}

.gift-featured {
    background: rgba(255, 193, 7, 0.92);
    color: #171717;
}

.gift-stock {
    background: rgba(46, 204, 113, 0.86);
    color: #fff;
}

.gift-manual {
    background: rgba(72, 125, 171, 0.88);
    color: #fff;
}

.giftcard-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
}

.giftcard-meta span {
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.07);
    color: rgba(255, 255, 255, 0.78);
    font-size: 12px;
}

.giftcard-price-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.giftcard-price-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.giftcard-price {
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
}

.review-card {
    text-align: center;
    padding: 30px;
}

.review-stars {
    font-size: 32px;
    color: #ffc107;
    margin-bottom: 15px;
    letter-spacing: 4px;
}

.review-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.review-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--brand-blue), var(--brand-pink));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
}

.review-name {
    color: white;
    font-weight: 600;
    text-align: left;
}

.review-date {
    color: var(--text-muted);
    font-size: 12px;
    text-align: left;
}

.support-shell {
    max-width: 900px;
    margin: 0 auto;
}

.support-panel {
    padding: 34px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(72, 125, 171, 0.25);
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(18px);
}

.support-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(72, 125, 171, 0.12);
    border: 1px solid rgba(72, 125, 171, 0.2);
    color: white;
    margin-bottom: 22px;
}

.support-copy h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 12px;
    color: white;
}

.support-copy p {
    color: rgba(255, 255, 255, 0.76);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 22px;
}

.support-number-card {
    padding: 22px;
    border-radius: 18px;
    background: rgba(7, 10, 18, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 22px;
}

.support-number-label {
    display: block;
    color: rgba(255, 255, 255, 0.62);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.75rem;
}

.support-number-value {
    display: block;
    margin-top: 8px;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.6rem;
    color: white;
}

.support-number-meta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.support-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.support-cta,
.support-secondary {
    padding: 14px 22px;
    border-radius: 14px;
    position: relative;
    overflow: hidden;
    font-weight: 700;
}

.support-cta {
    background: var(--gradient-brand);
    color: white;
    box-shadow: var(--glow-brand);
}

.support-secondary {
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.04);
    color: white;
}

.panel-footer {
    padding: 28px 0 34px;
    background: linear-gradient(180deg, rgba(7, 9, 15, 0.82), rgba(7, 9, 15, 0.96));
    border-top: 1px solid rgba(72, 125, 171, 0.18);
}

.panel-footer-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 0.8fr);
    gap: 24px;
    align-items: center;
}

.panel-footer-logo {
    display: inline-flex;
    margin-bottom: 10px;
}

.panel-footer-logo img {
    width: 110px;
    height: auto;
    display: block;
    filter: drop-shadow(0 0 18px rgba(72, 125, 171, 0.28));
}

.panel-footer-brand p {
    margin: 0;
    max-width: 520px;
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.6;
}

.panel-footer-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}

.panel-footer-social {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.15rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.panel-footer-social:hover {
    transform: translateY(-3px);
    color: white;
}

.panel-footer-social-whatsapp:hover {
    border-color: rgba(37, 211, 102, 0.45);
    box-shadow: 0 0 24px rgba(37, 211, 102, 0.22);
}

.panel-footer-social-instagram:hover {
    border-color: rgba(225, 48, 108, 0.45);
    box-shadow: 0 0 24px rgba(225, 48, 108, 0.22);
}

.panel-footer-social-facebook:hover {
    border-color: rgba(24, 119, 242, 0.45);
    box-shadow: 0 0 24px rgba(24, 119, 242, 0.22);
}

.panel-footer-social-tiktok:hover {
    border-color: rgba(255, 255, 255, 0.32);
    box-shadow: 0 0 24px rgba(255, 255, 255, 0.16);
}

.panel-footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 18px;
    justify-content: center;
}

.panel-footer-links a {
    color: rgba(255, 255, 255, 0.78);
    font-weight: 700;
    transition: color 0.25s ease, transform 0.25s ease;
}

.panel-footer-links a:hover {
    color: white;
    transform: translateY(-1px);
}

.panel-footer-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.95rem;
    text-align: right;
}

.fade-in {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s ease;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

.ripple {
    position: fixed;
    pointer-events: none;
    z-index: 9997;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(72, 125, 171, 0.6) 0%, transparent 70%);
    animation: rippleEffect 0.6s ease-out;
}

@keyframes rippleEffect {
    0% {
        transform: scale(0);
        opacity: 1;
    }

    100% {
        transform: scale(4);
        opacity: 0;
    }
}

@media (max-width: 991px) {
    #mainNav {
        padding: 0.45rem 0;
        background: rgba(10, 11, 16, 0.96);
    }

    #mainNav .container {
        min-height: 52px;
    }

    .navbar-brand {
        font-size: 1.1rem;
        gap: 0.4rem;
        max-width: calc(100% - 64px);
    }

    .navbar-brand-logo {
        width: 58px;
        height: 58px;
    }

    .navbar-toggler {
        width: 44px;
        height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 12px;
    }

    .navbar-toggler-counter {
        top: 2px;
        right: 2px;
        min-width: 20px;
        height: 20px;
        padding: 0 6px;
        font-size: 0.72rem;
        box-shadow: 0 4px 12px rgba(255, 110, 169, 0.35);
    }

    .navbar-toggler-icon {
        width: 1.15rem;
        height: 1.15rem;
    }

    #mainNav .navbar-collapse {
        background: rgba(10, 11, 16, 0.98);
        border: 1px solid rgba(72, 125, 171, 0.2);
        border-radius: 16px;
        margin-top: 0.75rem;
        padding: 0.65rem;
        box-shadow: 0 14px 34px rgba(0, 0, 0, 0.32);
        max-height: min(72vh, 560px);
        overflow-y: auto;
        overscroll-behavior: contain;
    }

    #mainNav .navbar-nav {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 0.45rem;
        width: 100%;
        padding-top: 0;
    }

    #mainNav .nav-item {
        min-width: 0;
    }

    #mainNav .nav-link {
        min-height: 48px;
        padding: 0.75rem 0.9rem;
        border-radius: 12px;
        font-size: 0.92rem;
        font-weight: 600;
        background: rgba(255, 255, 255, 0.02);
        width: 100%;
    }

    #mainNav .nav-link i {
        width: 22px;
        text-align: center;
        font-size: 0.9rem;
    }

    .navbar-user-section {
        grid-column: 1 / -1;
        margin-left: 0;
        margin-top: 0.35rem;
        padding-left: 0;
        padding-top: 0;
        border-left: none;
        border-top: none;
    }

    .nav-user-badge,
    .nav-auth-item {
        width: 100%;
    }

    .nav-auth-item {
        grid-column: 1 / -1;
        display: flex;
        justify-content: center !important;
        justify-self: center;
    }

    .nav-user-badge {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .panel-user-dropdown,
    .btn-neon-outline.navbar-btn {
        width: auto;
        min-width: min(100%, 320px);
        max-width: 320px;
        justify-content: space-between;
        min-height: 50px;
        padding: 0.75rem 1rem;
        border-radius: 14px;
        font-size: 0.9rem;
        margin-left: auto;
        margin-right: auto;
    }

    #mainNav .nav-auth-item .btn-neon-outline.navbar-btn {
        display: inline-flex !important;
        width: auto !important;
        min-width: min(100%, 320px);
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
        justify-content: center !important;
        gap: 0.6rem;
    }

    .panel-user-menu {
        position: static !important;
        inset: auto !important;
        transform: none !important;
        float: none;
        width: 100%;
        min-width: 100%;
        margin-top: 0.6rem !important;
        padding: 0.45rem;
        border-radius: 14px;
        box-shadow: none;
    }

    .panel-user-menu .dropdown-item {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .navbar-brand-text {
        gap: 4px;
        letter-spacing: 0.04em;
    }

    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 4px;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-stats {
        gap: 1rem;
    }

    .stat-item {
        width: 100%;
        max-width: 300px;
        min-width: 0;
        margin: 0 auto;
    }

    .btn-neon,
    .btn-neon-outline,
    .support-cta,
    .support-secondary {
        width: 100%;
    }

    .nav-auth-item {
        display: flex;
        justify-content: center !important;
        justify-self: center;
    }

    #mainNav .nav-auth-item .btn-neon-outline.navbar-btn {
        width: auto !important;
        min-width: min(100%, 320px);
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
        justify-content: center !important;
        gap: 0.6rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .panel-footer-inner,
    .support-actions {
        grid-template-columns: 1fr;
        width: 100%;
    }

    .panel-footer-links,
    .panel-footer-copy {
        justify-content: flex-start;
        align-items: flex-start;
        text-align: left;
    }

    .support-panel {
        padding: 24px;
    }
}

@media (max-width: 380px) {
    #mainNav .navbar-nav {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    #mainNav .nav-link {
        justify-content: center;
        padding-inline: 0.7rem;
        font-size: 0.88rem;
    }

    #mainNav .nav-auth-item .btn-neon-outline.navbar-btn {
        min-width: 0;
        max-width: 100%;
        padding-inline: 0.9rem;
        letter-spacing: 0.08em;
        font-size: 0.84rem;
    }
}

@media (max-width: 480px) {

    .hero-section {
        padding: 80px 0 60px;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }

    .stat-number {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .game-card-image-wrapper,
    .giftcard-hero {
        height: 180px;
    }

    .support-copy h3 {
        font-size: 1.35rem;
    }
}

.nav-user-badge {
    display: flex;
    align-items: center;
}

.navbar-user-section {
    margin-left: 1rem;
    padding-left: 1rem;
    border-left: 1px solid rgba(72, 125, 171, 0.2);
    flex-shrink: 0;
}

.panel-user-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: white;
    font-weight: 700;
}

.panel-user-dropdown {
    appearance: none;
    box-shadow: none;
    cursor: pointer;
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.panel-user-dropdown:hover,
.panel-user-dropdown.show {
    background: rgba(72, 125, 171, 0.16);
    border-color: rgba(72, 125, 171, 0.34);
    transform: translateY(-1px);
}

.panel-user-dropdown::after {
    margin-left: 4px;
    border-top-color: rgba(255, 255, 255, 0.84);
}

.panel-user-dropdown .panel-user-label {
    flex: 0 1 auto;
    min-width: 0;
}

.panel-user-counter,
.panel-user-menu-counter {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    border-radius: 999px;
    background: linear-gradient(135deg, #ff6ea9, #ff935c);
    color: #10131d;
    font-size: 0.72rem;
    font-weight: 800;
    line-height: 1;
    box-shadow: 0 6px 16px rgba(255, 110, 169, 0.28);
    flex: 0 0 auto;
}

.panel-user-counter {
    margin-left: 4px;
}

.panel-user-counter[hidden],
.panel-user-menu-counter[hidden] {
    display: none !important;
}

.panel-user-menu-counter {
    margin-left: auto;
}

@media (max-width: 991px) {
    .panel-user-counter {
        margin-left: 2px;
    }

    #mainNav .navbar-user-section {
        grid-column: 1 / -1;
        width: 100%;
        margin: 0.35rem 0 0;
        padding: 0;
        border: 0;
    }

    #mainNav .nav-user-badge,
    #mainNav .nav-auth-item {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    #mainNav .nav-user-badge {
        flex-direction: column;
    }

    #mainNav .panel-user-dropdown,
    #mainNav .nav-auth-item .btn-neon-outline.navbar-btn {
        width: min(100%, 320px);
        max-width: 320px;
        min-width: 0;
        margin: 0 auto;
    }
}

.panel-user-menu {
    margin-top: 12px !important;
    min-width: 240px;
    padding: 10px;
    border-radius: 18px;
    background: rgba(13, 17, 28, 0.96);
    border: 1px solid rgba(72, 125, 171, 0.24);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.38);
    backdrop-filter: blur(16px);
}

.panel-user-menu .dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 12px;
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.84);
    font-weight: 700;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.panel-user-menu .dropdown-item i {
    color: var(--brand-blue);
}

.panel-user-menu .dropdown-item:hover,
.panel-user-menu .dropdown-item:focus {
    background: rgba(72, 125, 171, 0.14);
    color: white;
    transform: translateX(2px);
}

.panel-user-menu .dropdown-divider {
    border-color: rgba(255, 255, 255, 0.08);
    margin: 8px 0;
}

.panel-user-menu-danger i,
.panel-user-menu-danger:hover,
.panel-user-menu-danger:focus {
    color: #ff8bbd !important;
}

.panel-success-modal .modal-dialog {
    max-width: 420px;
}

.panel-success-modal .modal-content {
    background: linear-gradient(180deg, rgba(10, 16, 28, 0.98), rgba(18, 24, 38, 0.96));
    border: 1px solid rgba(72, 125, 171, 0.28);
    border-radius: 24px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45), 0 0 35px rgba(72, 125, 171, 0.18);
    text-align: center;
    overflow: hidden;
}

.panel-success-modal .modal-body {
    padding: 24px 28px 30px;
}

.panel-success-modal h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.35rem;
    color: white;
    margin-bottom: 10px;
}

.panel-success-modal p {
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 8px;
    font-size: 1rem;
}

.panel-success-modal-timer {
    display: inline-block;
    color: rgba(255, 255, 255, 0.56);
    font-size: 0.83rem;
    letter-spacing: 0.03em;
}

.panel-success-modal-icon {
    width: 76px;
    height: 76px;
    margin: 28px auto 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    background: linear-gradient(135deg, rgba(72, 125, 171, 1), rgba(195, 26, 112, 1));
    box-shadow: 0 0 30px rgba(72, 125, 171, 0.35), 0 0 46px rgba(195, 26, 112, 0.24);
}

.modal-backdrop.show {
    opacity: 0.72;
    backdrop-filter: blur(6px);
}

.client-mailbox-modal .modal-dialog {
    max-width: 720px;
}

.client-mailbox-modal-content {
    background: linear-gradient(180deg, rgba(10, 16, 28, 0.98), rgba(18, 24, 38, 0.96));
    border: 1px solid rgba(72, 125, 171, 0.28);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45), 0 0 35px rgba(72, 125, 171, 0.18);
}

.client-mailbox-modal-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding: 24px 26px 18px;
    background: linear-gradient(135deg, rgba(72, 125, 171, 0.2), rgba(195, 26, 112, 0.18));
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.client-mailbox-modal-eyebrow {
    display: inline-block;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.client-mailbox-modal-header .modal-title {
    margin: 0;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.35rem;
    color: #fff;
}

.client-mailbox-modal-body {
    padding: 22px 26px 26px;
}

.client-mailbox-modal-status,
.client-mailbox-empty {
    display: grid;
    place-items: center;
    gap: 10px;
    min-height: 180px;
    padding: 18px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    text-align: center;
    color: rgba(255, 255, 255, 0.78);
}

.client-mailbox-empty i,
.client-mailbox-modal-status i {
    font-size: 1.5rem;
    color: #9cc6eb;
}

.client-mailbox-empty h3 {
    margin: 0;
    font-size: 1.05rem;
    color: #fff;
}

.client-mailbox-empty p {
    margin: 0;
}

.client-mailbox-list {
    display: grid;
    gap: 14px;
}

.client-mailbox-card {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 18px;
    border-radius: 18px;
    border: 1px solid rgba(72, 125, 171, 0.24);
    background: rgba(255, 255, 255, 0.04);
}

.client-mailbox-card-copy strong {
    display: block;
    margin-bottom: 6px;
    color: #fff;
}

.client-mailbox-card-copy p {
    margin: 0;
    color: rgba(255, 255, 255, 0.84);
}

.client-mailbox-card > span {
    color: rgba(255, 255, 255, 0.58);
    font-weight: 700;
    white-space: nowrap;
}

.client-mailbox-card--success {
    border-color: rgba(112, 226, 155, 0.28);
    background: rgba(112, 226, 155, 0.08);
}

.client-mailbox-card--approved,
.client-mailbox-card--info {
    border-color: rgba(72, 125, 171, 0.26);
    background: rgba(72, 125, 171, 0.08);
}

.client-mailbox-card--error {
    border-color: rgba(255, 124, 157, 0.24);
    background: rgba(255, 124, 157, 0.08);
}

@media (max-width: 576px) {
    .client-mailbox-modal-header,
    .client-mailbox-modal-body {
        padding-left: 18px;
        padding-right: 18px;
    }

    .client-mailbox-card {
        flex-direction: column;
    }

    .client-mailbox-card > span {
        white-space: normal;
    }
}