:root {
    --bg-main: #050816;
    --bg-alt: #080b1b;
    --glass-bg: rgba(255, 255, 255, 0.04);
    --glass-border: rgba(255, 255, 255, 0.12);
    --accent-primary: #4f46e5;
    --accent-secondary: #ec4899;
    --accent-cyan: #22d3ee;
    --text-main: #f9fafb;
    --text-muted: #9ca3af;
    --shadow-neon: 0 0 20px rgba(79, 70, 229, 0.7);
    --radius-md: 14px;
    --radius-lg: 18px;
    --radius-xl: 26px;
    --transition-fast: 0.22s ease-out;
    --transition-med: 0.35s ease-out;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    background:
        radial-gradient(circle at top left, rgba(79, 70, 229, 0.4), transparent 60%),
        radial-gradient(circle at bottom right, rgba(236, 72, 153, 0.36), transparent 60%),
        radial-gradient(circle at top right, rgba(34, 211, 238, 0.28), transparent 55%),
        #020617;
    color: var(--text-main);
}

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

a:hover {
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #020617;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 999px;
}

.section-padding {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.section-title {
    font-family: "Orbitron", system-ui;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 0.75rem;
    color: var(--accent-cyan);
}

.section-heading {
    font-family: "Orbitron", system-ui;
    font-size: clamp(1.8rem, 2.5vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    color: var(--text-muted);
    max-width: 40rem;
}

.text-gradient {
    background: linear-gradient(120deg, var(--accent-primary), var(--accent-secondary), var(--accent-cyan));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.8);
}

.shadow-neon {
    box-shadow: var(--shadow-neon);
}

.badge-pill {
    border-radius: 999px;
}

.badge-soft,
.badge-soft.bg-body {
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(148, 163, 184, 0.5);
    color: var(--text-main);
}

.badge-soft,
.badge-soft span {
    font-size: 0.72rem;
}

.badge-soft {
    padding: 0.35rem 0.8rem;
}

.badge-outline {
    border-radius: 999px;
    padding: 0.25rem 0.7rem;
    border: 1px solid rgba(148, 163, 184, 0.6);
    font-size: 0.7rem;
    color: var(--text-muted);
    background: rgba(15, 23, 42, 0.9);
}

.badge-soft.badge-pill,
.badge.badge-pill.badge-soft {
    border-radius: 999px;
}

.btn-neon {
    position: relative;
    overflow: hidden;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.4);
    padding: 0.75rem 1.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.78rem;
    transition: transform var(--transition-med), box-shadow var(--transition-med), background var(--transition-med), color var(--transition-med);
    background: radial-gradient(circle at 10% 20%, rgba(79, 70, 229, 0.9), rgba(236, 72, 153, 0.9));
    color: #f9fafb;
}

.btn-neon::before {
    content: "";
    position: absolute;
    inset: -150%;
    background: conic-gradient(from 180deg, rgba(79, 70, 229, 0.32), rgba(236, 72, 153, 0.32), rgba(34, 211, 238, 0.32), rgba(79, 70, 229, 0.32));
    opacity: 0;
    transform: rotate(0deg);
    transition: opacity var(--transition-fast), transform 1.1s linear;
}

.btn-neon:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 0 22px rgba(79, 70, 229, 0.9);
}

.btn-neon:hover::before {
    opacity: 1;
    transform: rotate(120deg);
}

.navbar .btn-neon {
    padding: 0.55rem 1.4rem;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    background: linear-gradient(90deg, rgba(79, 70, 229, 0.9), rgba(236, 72, 153, 0.9));
    box-shadow: none;
    transform: none;
}

.navbar .btn-neon::before {
    display: none;
}

.navbar .btn-neon:hover {
    transform: translateY(-1px);
    box-shadow: 0 0 14px rgba(129, 140, 248, 0.6);
}

.btn-outline-neon {
    border-radius: 999px;
    padding: 0.75rem 1.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.78rem;
    border: 1px solid rgba(148, 163, 184, 0.7);
    color: var(--text-main);
    background: rgba(15, 23, 42, 0.96);
    transition: background var(--transition-med), color var(--transition-med), transform var(--transition-med), box-shadow var(--transition-med), border-color var(--transition-med);
}

.btn-outline-neon:hover {
    background: radial-gradient(circle at 0% 0%, rgba(37, 99, 235, 0.4), rgba(15, 23, 42, 1));
    color: #e5e7eb;
    transform: translateY(-2px);
    box-shadow: 0 0 22px rgba(37, 99, 235, 0.85);
    border-color: rgba(129, 140, 248, 0.95);
}

.game-btn {
    padding-inline: 1.4rem;
}

.tilt-hover {
    transition: transform var(--transition-med), box-shadow var(--transition-med), border-color var(--transition-med);
    transform-origin: center;
}

.tilt-hover:hover {
    transform: translateY(-8px) scale(1.03) rotate3d(1, -1, 0, 7deg);
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.95);
    border-color: rgba(129, 140, 248, 0.9);
}

@keyframes float-y {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-14px);
    }
    100% {
        transform: translateY(0px);
    }
}

@keyframes gradient-move {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes fade-up {
    0% {
        opacity: 0;
        transform: translateY(26px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fade-in {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.animate-fade-up {
    opacity: 0;
    animation: fade-up 0.9s var(--transition-med) forwards;
}

.animate-delay-1 {
    animation-delay: 0.15s;
}

.animate-delay-2 {
    animation-delay: 0.3s;
}

.animate-float-y {
    animation: float-y 6s ease-in-out infinite;
}

.navbar {
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    background: linear-gradient(to right, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.75));
    border-bottom: 1px solid rgba(148, 163, 184, 0.35);
}

.navbar-brand {
    font-family: "Orbitron", system-ui;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.brand-logo {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.7);
    background: radial-gradient(circle at 30% 0%, rgba(248, 250, 252, 0.4), transparent 55%),
    radial-gradient(circle at 0% 80%, rgba(79, 70, 229, 0.7), rgba(236, 72, 153, 0.5));
    font-size: 1rem;
    color: #e5e7eb;
}

.navbar-dark .navbar-toggler {
    border-color: rgba(148, 163, 184, 0.8);
}

.navbar-dark .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(248,249,250,0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    background-size: 100% 100%;
}

.nav-link {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #e5e7eb !important;
    opacity: 0.78;
    padding-inline: 0.95rem !important;
    transition: opacity var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.nav-link:hover,
.nav-link.active {
    opacity: 1;
    color: var(--accent-cyan) !important;
    transform: translateY(-1px);
}

.nav-icon {
    font-size: 0.95rem;
}

.hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    background:
        radial-gradient(circle at top left, rgba(37, 99, 235, 0.6), transparent 65%),
        radial-gradient(circle at bottom right, rgba(236, 72, 153, 0.55), transparent 60%),
        radial-gradient(circle at top right, rgba(34, 211, 238, 0.32), transparent 50%),
        linear-gradient(135deg, #020617 0%, #020617 100%);
}

.hero::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: conic-gradient(from 45deg, rgba(79, 70, 229, 0.26), rgba(236, 72, 153, 0.18), rgba(34, 211, 238, 0.22), rgba(79, 70, 229, 0.28));
    filter: blur(40px);
    opacity: 0.8;
    top: -260px;
    right: -160px;
    animation: gradient-move 18s ease-in-out infinite alternate;
}

.hero-inner {
    position: relative;
    z-index: 2;
    padding-top: 5rem;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.2rem 0.65rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.97);
    border: 1px solid rgba(148, 163, 184, 0.5);
}

.hero-eyebrow-text {
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.dot-live {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #22c55e;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.9);
    animation: pulse-soft 1.8s infinite;
}

@keyframes pulse-soft {
    0% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.9);
    }
    70% {
        box-shadow: 0 0 0 16px rgba(34, 197, 94, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}

.hero-title {
    font-family: "Orbitron", system-ui;
    font-size: clamp(2.1rem, 3.4vw, 3.2rem);
    line-height: 1.1;
}

.hero-subtitle {
    color: var(--text-muted);
    font-size: 0.98rem;
}

.hero-meta {
    font-size: 0.78rem;
}

.meta-label {
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--text-muted);
    margin-bottom: 0.2rem;
}

.meta-value {
    font-weight: 600;
}

.hero-visual-wrapper {
    position: relative;
}

.hero-visual {
    position: relative;
    padding: 1.1rem;
    border-radius: var(--radius-xl);
    background: radial-gradient(circle at 10% 0%, rgba(248, 250, 252, 0.32), transparent 60%),
    radial-gradient(circle at 0% 90%, rgba(79, 70, 229, 0.7), rgba(15, 23, 42, 1));
    overflow: hidden;
}

.hero-image-frame {
    border-radius: calc(var(--radius-xl) - 6px);
    overflow: hidden;
    position: relative;
}

.hero-main-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    transform-origin: center;
    transition: transform 6s ease-out;
}

.hero-visual:hover .hero-main-image {
    transform: scale(1.08);
}

.hero-game-tag {
    position: absolute;
    top: 1.2rem;
    left: 1.3rem;
    z-index: 2;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.32rem 0.9rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.94);
    border: 1px solid rgba(148, 163, 184, 0.5);
}

.hero-floating-card {
    position: absolute;
    right: 1.4rem;
    left: auto;
    padding: 0.7rem 0.9rem;
    border-radius: var(--radius-md);
    font-size: 0.78rem;
}

.hero-floating-card-top {
    top: 1.4rem;
}

.hero-floating-card-bottom {
    bottom: 1.4rem;
}

.hero-floating-card p {
    margin-bottom: 0.1rem;
}

.hero-floating-card .small {
    font-size: 0.68rem;
}

.avatar-stack {
    position: relative;
    display: inline-flex;
}

.avatar-circle {
    width: 26px;
    height: 26px;
    border-radius: 999px;
    border: 2px solid rgba(15, 23, 42, 0.95);
    background-size: cover;
    background-position: center;
}

.avatar-1 {
    background-image: url("https://images.unsplash.com/photo-1603415526960-f7e0328c63b1?auto=format&fit=crop&w=200&q=80");
}

.avatar-2 {
    background-image: url("https://images.unsplash.com/photo-1525134479668-1bee5c7c6845?auto=format&fit=crop&w=200&q=80");
    margin-left: -10px;
}

.avatar-3 {
    background-image: url("https://images.unsplash.com/photo-1535713875002-d1d0cf377fde?auto=format&fit=crop&w=200&q=80");
    margin-left: -10px;
}

.hero-orbit {
    position: absolute;
    border-radius: 50%;
    border: 1px dashed rgba(148, 163, 184, 0.3);
}

.hero-orbit-1 {
    width: 420px;
    height: 420px;
    top: -40px;
    left: -80px;
}

.hero-orbit-2 {
    width: 340px;
    height: 340px;
    bottom: -120px;
    right: -40px;
}

.category-card {
    padding: 1.5rem 1.5rem 1.4rem;
}

.category-card .text-muted {
    color: #ffffff !important;
}

.category-icon {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 20% 0%, rgba(248, 250, 252, 0.4), transparent 55%),
    radial-gradient(circle at 0% 90%, rgba(79, 70, 229, 0.7), rgba(15, 23, 42, 1));
    color: #e5e7eb;
}

.category-icon i {
    font-size: 1.1rem;
}

.category-meta {
    margin-top: 0.4rem;
}

.game-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    padding: 0;
}

.game-cover-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.game-cover {
    width: 100%;
    height: 260px;
    object-fit: cover;
    filter: saturate(1.2);
    transition: transform 1.1s ease-out, filter 0.55s ease-out;
}

.game-tag {
    position: absolute;
    top: 0.85rem;
    left: 0.9rem;
    z-index: 2;
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 0.25rem 0.8rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(148, 163, 184, 0.6);
}

.game-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.2), rgba(15, 23, 42, 0.95));
    display: flex;
    align-items: flex-end;
    transform: translateY(40%);
    opacity: 0;
    transition: opacity 0.45s ease-out, transform 0.45s ease-out, backdrop-filter 0.45s ease-out;
    backdrop-filter: blur(0px);
}

.game-overlay-inner {
    padding: 1.25rem 1.3rem 1.3rem;
}

.game-overlay .text-muted {
    color: #ffffff !important;
}

.game-card:hover .game-cover {
    transform: scale(1.12);
    filter: saturate(1.35) brightness(1.05);
}

.game-card:hover .game-overlay {
    opacity: 1;
    transform: translateY(0%);
    backdrop-filter: blur(10px);
}

.about-copy {
    max-width: 34rem;
}

.about-pill {
    padding: 0.85rem 0.9rem;
}

.about-pill h6,
.about-pill .h6 {
    font-size: 0.9rem;
}

.about-stat {
    padding: 0.9rem 1.1rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(148, 163, 184, 0.5);
    background: rgba(15, 23, 42, 0.94);
}

.about-stat-value {
    display: block;
    font-family: "Orbitron", system-ui;
    font-size: 1.2rem;
    margin-bottom: 0.1rem;
}

.about-stat-label {
    font-size: 0.72rem;
    color: var(--text-muted);
}

.about-visual-wrapper {
    position: relative;
}

.about-visual {
    position: relative;
    padding: 1rem;
}

.about-image-grid {
    position: relative;
    display: grid;
    grid-template-columns: 2fr 1.3fr;
    grid-template-rows: auto auto;
    gap: 0.6rem;
}

.about-image.main {
    grid-row: 1 / span 2;
    border-radius: 18px;
}

.about-image.secondary,
.about-image.tertiary {
    border-radius: 16px;
}

.about-floating-label {
    position: absolute;
    bottom: 1.2rem;
    left: 1.2rem;
    padding: 0.55rem 0.85rem;
    font-size: 0.8rem;
}

.price-card {
    position: relative;
    padding: 1.6rem 1.5rem 1.4rem;
    border-radius: var(--radius-xl);
}

.price-card-popular {
    border-color: rgba(129, 140, 248, 0.95);
    box-shadow: 0 0 0 1px rgba(129, 140, 248, 0.6), 0 24px 60px rgba(15, 23, 42, 0.95);
}

.price-card-popular .btn-neon {
    box-shadow: none;
}

.price-card-popular .btn-neon::before {
    display: none;
}

.price-card-popular .btn-neon:hover {
    transform: translateY(-1px);
    box-shadow: 0 0 18px rgba(129, 140, 248, 0.9);
}

.price-header {
    margin-bottom: 1rem;
}

.price-amount {
    font-family: "Orbitron", system-ui;
    font-size: 1.9rem;
}

.price-period {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-left: 0.15rem;
}

.price-features li {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.4rem;
}

.price-features i {
    color: var(--accent-cyan);
    margin-right: 0.35rem;
}

.price-badge {
    position: absolute;
    top: 1rem;
    right: 1.4rem;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.3rem 0.8rem;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.2);
    border: 1px solid rgba(129, 140, 248, 0.8);
}

.testimonial-card {
    padding: 1.5rem 1.4rem 1.4rem;
}

.avatar-wrapper {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: radial-gradient(circle at 20% 0%, rgba(248, 250, 252, 0.5), transparent 55%),
    radial-gradient(circle at 0% 90%, rgba(236, 72, 153, 0.7), rgba(15, 23, 42, 1));
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.avatar-initials {
    font-size: 0.88rem;
    font-weight: 600;
}

.testimonial-role {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.testimonial-text {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.small.text-muted {
    color: #ffffff !important;
}

.small.text-muted.mb-0 {
    color: #ffffff !important;
}

.rating-stars {
    color: #fbbf24;
    font-size: 0.85rem;
}

.footer {
    border-top: 1px solid rgba(148, 163, 184, 0.4);
    background: radial-gradient(circle at top center, rgba(15, 23, 42, 0.9), #020617);
}

.footer .text-muted {
    color: #ffffff !important;
}

.footer-brand .navbar-brand {
    padding-left: 0;
}

.footer-badges .badge-pill {
    font-size: 0.72rem;
}

.footer-social .social-link {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.7);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text-main);
    background: rgba(15, 23, 42, 0.9);
    transition: background var(--transition-fast), color var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
}

.footer-social .social-link:hover {
    background: radial-gradient(circle at 20% 0%, rgba(248, 250, 252, 0.4), transparent 55%),
    radial-gradient(circle at 0% 90%, rgba(79, 70, 229, 0.7), rgba(15, 23, 42, 1));
    transform: translateY(-2px);
    box-shadow: 0 0 18px rgba(129, 140, 248, 0.8);
}

.contact-card {
    padding: 1.6rem 1.5rem 1.4rem;
    border-radius: var(--radius-xl);
}

.contact-card .form-control {
    background-color: rgba(15, 23, 42, 0.92);
    border-color: rgba(51, 65, 85, 0.9);
    color: var(--text-main);
    font-size: 0.85rem;
}

.contact-card .form-control:focus {
    border-color: rgba(129, 140, 248, 0.95);
    box-shadow: 0 0 0 1px rgba(129, 140, 248, 0.9);
}

.contact-card .form-label {
    color: var(--text-muted);
}

.footer-bottom {
    position: relative;
    border-top: 1px solid rgba(15, 23, 42, 0.9);
}

.footer-links a:hover {
    color: var(--accent-cyan) !important;
}

.footer-copy {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: #e5e7eb;
    padding: 0.3rem 0.75rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(31, 41, 55, 0.85);
    backdrop-filter: blur(14px);
}

.footer-copy i {
    font-size: 0.85rem;
    opacity: 0.8;
}

.dot-separator {
    opacity: 0.6;
    margin-inline: 0.25rem;
}

.footer-links {
    background: rgba(15, 23, 42, 0.9);
    border-radius: 999px;
    padding: 0.32rem 0.55rem;
    border: 1px solid rgba(31, 41, 55, 0.85);
    backdrop-filter: blur(14px);
    align-items: center;
}

.footer-link {
    position: relative;
    color: #e5e7eb;
    text-decoration: none;
    opacity: 0.8;
    padding-bottom: 1px;
    transition: color var(--transition-fast), opacity var(--transition-fast);
}

.footer-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
    transition: width var(--transition-fast);
}

.footer-link:hover {
    opacity: 1;
}

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

.back-to-top-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    padding: 0;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.5);
    color: #ffffff;
    background: rgba(15, 23, 42, 0.98);
    text-decoration: none;
    transition: background var(--transition-fast), color var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
}

.back-to-top-link i {
    font-size: 1rem;
}

.back-to-top-link:hover {
    background: radial-gradient(circle at 0% 0%, rgba(79, 70, 229, 0.5), rgba(15, 23, 42, 1));
    border-color: rgba(129, 140, 248, 0.9);
    box-shadow: 0 0 14px rgba(79, 70, 229, 0.8);
    transform: translateY(-1px);
}

@media (max-width: 991.98px) {
    .hero {
        padding-top: 4.5rem;
    }
}

@media (max-width: 767.98px) {
    .section-padding {
        padding-top: 3.8rem;
        padding-bottom: 3.8rem;
    }

    .hero-inner {
        padding-top: 4.5rem;
    }

    .hero-visual {
        margin-top: 0.5rem;
    }

    .game-cover {
        height: 220px;
    }

    .about-image-grid {
        grid-template-columns: 1fr 1fr;
    }

    .about-image.main {
        grid-row: auto;
        grid-column: 1 / span 2;
    }

    .hero-orbit-1,
    .hero-orbit-2 {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }
}
