/* === ANIMATIONS === */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* === SMOOTH SCROLL === */
html {
    scroll-behavior: smooth;
}

/* === CUSTOM SCROLLBAR === */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: #2a2f45;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}

/* === CUSTOM SELECTION === */
::selection {
    background: rgba(139, 92, 246, 0.35);
    color: #fff;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(139, 92, 246, 0.4); }
    50% { box-shadow: 0 0 20px 4px rgba(139, 92, 246, 0.15); }
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered children */
.reveal-stagger > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0s; opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(6) { transition-delay: 0.5s; opacity: 1; transform: translateY(0); }

/* === RESET & BASE === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-dark: #000;
    --bg-card: #0a0a14;
    --bg-nav: rgba(0, 0, 0, 0.92);
    --accent: #8b5cf6;
    --accent-hover: #a78bfa;
    --text: #e0e0e0;
    --text-muted: rgba(255, 255, 255, 0.35);
    --border: rgba(255, 255, 255, 0.06);
    --green: #06b6d4;
    --pink: #f472b6;
    --emerald: #6ee7b7;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--bg-dark);
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    animation: pageLoad 0.5s ease;
}

@keyframes pageLoad {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* === BACKGROUND EFFECTS === */
.bg-effects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.bg-effects canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.12;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: rgba(111, 0, 255, 0.25);
    top: -10%;
    left: -5%;
    animation: orbFloat1 12s ease-in-out infinite alternate;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: rgba(0, 210, 255, 0.2);
    bottom: 10%;
    right: -5%;
    animation: orbFloat2 15s ease-in-out infinite alternate;
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: rgba(255, 0, 150, 0.2);
    top: 50%;
    left: 40%;
    animation: orbFloat3 10s ease-in-out infinite alternate;
}

.orb-4 {
    width: 300px;
    height: 300px;
    background: rgba(0, 255, 136, 0.15);
    top: 20%;
    left: 60%;
    animation: orbFloat1 18s ease-in-out infinite alternate-reverse;
}

.orb-5 {
    width: 250px;
    height: 250px;
    background: rgba(99, 102, 241, 0.18);
    top: 35%;
    left: 25%;
    animation: orbFloat2 14s ease-in-out infinite alternate-reverse;
}

@keyframes orbFloat1 {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(8vw, 12vh) scale(1.15); }
    100% { transform: translate(15vw, 20vh) scale(1.3); }
}

@keyframes orbFloat2 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-20vw, -15vh) scale(0.8); }
}

@keyframes orbFloat3 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(10vw, -25vh) scale(1.2); }
}

/* Ensure content stays above background */
header {
    position: relative;
    z-index: 100;
}

section, footer {
    position: relative;
    z-index: 1;
}

a {
    text-decoration: none;
    color: inherit;
}

/* === NAV === */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 3rem;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    z-index: 100;
    animation: fadeInDown 0.6s ease;
}

nav::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.3), rgba(6, 182, 212, 0.3), rgba(244, 114, 182, 0.3), transparent);
    opacity: 0.6;
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 42px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(139, 92, 246, 0.3));
}

.logo-text {
    font-size: 1.4rem;
    font-weight: 500;
    background: linear-gradient(135deg, #c4b5fd, #67e8f9, #f9a8d4, #6ee7b7, #c4b5fd);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.02em;
    margin-left: 0.5rem;
    animation: textGradientShift 6s ease-in-out infinite;
    filter: drop-shadow(0 0 15px rgba(139, 92, 246, 0.2));
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    align-items: center;
}

nav ul a {
    color: rgba(255, 255, 255, 0.4);
    font-weight: 400;
    font-size: 0.88rem;
    letter-spacing: 0.04em;
    transition: color 0.3s ease;
    position: relative;
}

nav ul a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--green));
    border-radius: 1px;
    transition: width 0.3s ease;
}

nav ul a:hover::after,
nav ul a.active::after {
    width: 100%;
}

nav ul a:hover,
nav ul a.active {
    color: rgba(255, 255, 255, 0.9);
}

/* === HERO === */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    padding: 7rem 2rem 3rem;
    text-align: center;
    background: radial-gradient(ellipse at 50% 30%, rgba(139, 92, 246, 0.12) 0%, transparent 70%);
}

.hero-badge {
    display: inline-block;
    background: rgba(139, 92, 246, 0.1);
    color: var(--accent-hover);
    padding: 0.4rem 1.2rem;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(139, 92, 246, 0.2);
    animation: fadeInUp 0.6s ease;
    backdrop-filter: blur(10px);
}

.hero h1 {
    font-size: 3.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: -1.5px;
    animation: fadeInUp 0.8s ease;
}

.hero .accent {
    background: linear-gradient(135deg, #c4b5fd, #67e8f9, #f9a8d4, #6ee7b7);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textGradientShift 6s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(139, 92, 246, 0.25));
}

.hero p {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease 0.15s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    animation: fadeInUp 0.8s ease 0.3s both;
}

/* === STATS BAR === */
.stats-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 2.5rem 3rem;
    max-width: 900px;
    margin: -2rem auto 0;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.stat {
    text-align: center;
    flex: 1;
}

.stat-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 600;
    background: linear-gradient(135deg, #c4b5fd, #67e8f9, #f9a8d4);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    animation: textGradientShift 6s ease-in-out infinite;
}

.stat-label {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.25);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.25em;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.06);
}

/* === FEATURED BANNER === */
.featured-banner {
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 1100px;
    margin: 4rem auto;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.06), rgba(6, 182, 212, 0.04));
    border: 1px solid var(--border);
    border-radius: 24px;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.featured-content {
    flex: 1;
}

.featured-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent), var(--pink));
    color: #fff;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.featured-content h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.featured-content p {
    color: rgba(255, 255, 255, 0.25);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    max-width: 400px;
}

.featured-image {
    flex-shrink: 0;
    width: 320px;
    height: 200px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.featured-image:hover img {
    transform: scale(1.05);
}

/* === HOW IT WORKS === */
.how-it-works {
    max-width: 1100px;
    margin: 0 auto;
    padding: 4rem 3rem;
    text-align: center;
}

.how-it-works h2 {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 3rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.step-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.step-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.2);
}

.step-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--accent), var(--pink));
    color: #fff;
    font-size: 1.3rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.step-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
}

.step-card p {
    color: rgba(255, 255, 255, 0.25);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* === CTA SECTION === */
.cta-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 3rem 4rem;
}

.cta-card {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.08), rgba(6, 182, 212, 0.05));
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 4rem;
    text-align: center;
    backdrop-filter: blur(10px);
}

.cta-card h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.cta-card p {
    color: rgba(255, 255, 255, 0.25);
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

.cta-row {
    display: flex;
    justify-content: center;
}

/* === SITE FOOTER === */
.site-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding: 4rem 3rem 0;
    position: relative;
    z-index: 1;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.25), rgba(6, 182, 212, 0.25), rgba(244, 114, 182, 0.25), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
    padding-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.65;
    max-width: 280px;
}

.footer-col h4 {
    font-size: 0.78rem;
    font-weight: 500;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: rgba(255, 255, 255, 0.5);
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-col ul a {
    color: var(--text-muted);
    font-size: 0.88rem;
    transition: color 0.2s, padding-left 0.2s;
}

.footer-col ul a:hover {
    color: var(--accent-hover);
    padding-left: 4px;
}

.coming-soon {
    color: rgba(255, 255, 255, 0.15);
    font-size: 0.85rem;
    font-style: italic;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    text-align: center;
    padding: 1.5rem;
    color: rgba(255, 255, 255, 0.15);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    max-width: 1100px;
    margin: 0 auto;
}

/* === BUTTONS === */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(99, 102, 241, 0.15));
    border: 1px solid rgba(139, 92, 246, 0.25);
    color: rgba(255, 255, 255, 0.85);
    animation: fadeInUp 0.8s ease 0.3s both;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(15px);
    letter-spacing: 0.04em;
}

.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.5s;
}

.btn:hover::after {
    left: 100%;
}

.btn:hover {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.35), rgba(99, 102, 241, 0.25));
    border-color: rgba(139, 92, 246, 0.5);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.2), 0 0 60px rgba(139, 92, 246, 0.08);
    color: #fff;
}

.btn-download {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(6, 182, 212, 0.15));
    border: 1px solid rgba(139, 92, 246, 0.2);
    width: 100%;
    text-align: center;
    border-radius: 50px;
}

.btn-download:hover {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.35), rgba(6, 182, 212, 0.25));
    border-color: rgba(139, 92, 246, 0.4);
}

.btn-green {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(6, 182, 212, 0.15));
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 50px;
}

.btn-green:hover {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.35), rgba(6, 182, 212, 0.25));
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.2);
}

/* === GAMES SECTION === */
.games-section {
    padding: 4rem 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.games-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 500;
    background: linear-gradient(135deg, #c4b5fd, #67e8f9, #f9a8d4);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textGradientShift 6s ease-in-out infinite;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2rem;
}

/* === GAME CARD === */
.game-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.game-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 50px rgba(139, 92, 246, 0.15), 0 8px 20px rgba(0, 0, 0, 0.4);
    border-color: rgba(139, 92, 246, 0.2);
}

.game-card:hover .game-image img {
    transform: scale(1.05);
}

.game-image {
    height: 200px;
    background: linear-gradient(135deg, #0a0a14, #0a0a14);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.game-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    pointer-events: none;
    z-index: 1;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    background: linear-gradient(135deg, #0a0a14, #0f0f1e);
}

.game-info {
    padding: 1.5rem;
}

.game-info h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.game-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 0.75rem;
}

.tag {
    background: rgba(139, 92, 246, 0.1);
    color: var(--accent-hover);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 500;
    transition: background 0.2s, transform 0.2s;
    border: 1px solid rgba(139, 92, 246, 0.1);
}

.tag:hover {
    background: rgba(139, 92, 246, 0.2);
    transform: translateY(-1px);
}

.game-info p {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.92rem;
    margin-bottom: 1.25rem;
    line-height: 1.55;
}

/* === GAME DETAIL PAGE === */
.game-detail {
    max-width: 900px;
    margin: 0 auto;
    padding: 7rem 2rem 4rem;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 2rem;
    font-weight: 400;
    font-size: 0.88rem;
    letter-spacing: 0.04em;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: rgba(255, 255, 255, 0.8);
}

.game-detail-header {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    align-items: flex-start;
}

.game-detail-icon {
    width: 140px;
    height: 140px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.game-detail-meta h1 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #c4b5fd, #67e8f9, #f9a8d4, #6ee7b7);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textGradientShift 6s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(139, 92, 246, 0.2));
}

.game-detail-meta .game-tags {
    margin-bottom: 1rem;
}

.game-detail-meta p {
    color: rgba(255, 255, 255, 0.3);
    line-height: 1.7;
}

.download-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 2rem;
    margin-top: 2rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.download-box h2 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.download-box .note {
    color: rgba(255, 255, 255, 0.25);
    font-size: 0.88rem;
    margin-bottom: 1.5rem;
}

.system-req {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 2rem;
    margin-top: 2rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.system-req h2 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.system-req ul {
    list-style: none;
    display: grid;
    gap: 0.6rem;
}

.system-req li {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.92rem;
}

.system-req li strong {
    color: rgba(255, 255, 255, 0.6);
    min-width: 100px;
    display: inline-block;
}

/* === SEARCH & FILTER === */
.search-filter-bar {
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.search-box {
    position: relative;
    max-width: 480px;
}

.search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    pointer-events: none;
}

.search-box input {
    width: 100%;
    padding: 0.8rem 1rem 0.8rem 2.8rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.03);
    color: var(--text);
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.search-box input::placeholder {
    color: rgba(255,255,255,0.2);
}

.search-box input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.15);
}

.filter-bar {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.filter-label {
    color: var(--text-muted);
    font-size: 0.88rem;
    font-weight: 600;
    margin-right: 0.25rem;
}

.filter-btn {
    padding: 0.4rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.02);
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.82rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.filter-btn:hover {
    border-color: rgba(139, 92, 246, 0.3);
    color: rgba(255, 255, 255, 0.7);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: rgba(139, 92, 246, 0.15);
    border-color: rgba(139, 92, 246, 0.3);
    color: rgba(255, 255, 255, 0.85);
    animation: pulse 2s infinite;
}

.no-results {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--text-muted);
    font-size: 1.05rem;
}

/* === LOGIN GATE === */
.login-gate {
    text-align: center;
    padding: 4rem 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    max-width: 500px;
    margin: 0 auto;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.login-gate .lock-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.login-gate h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.login-gate p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.gate-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(139, 92, 246, 0.3);
    color: var(--accent-hover);
}

.btn-outline:hover {
    background: rgba(139, 92, 246, 0.15);
    border-color: rgba(139, 92, 246, 0.5);
    color: #fff;
}

/* === GAME GALLERY === */
.game-gallery {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 2rem;
    margin-top: 2rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.game-gallery h2 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.gallery-grid img {
    width: 100%;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: transform 0.25s, box-shadow 0.25s;
    cursor: pointer;
}

.gallery-grid img:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

/* === GAME IMAGE (thumbnail) === */
.game-detail-icon img,
.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: linear-gradient(135deg, #0a0a14, #0f0f1e);
}

.game-detail-icon img {
    border-radius: 14px;
}

/* === AUTH PAGES === */
.auth-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 6rem 2rem 2rem;
    background: radial-gradient(ellipse at 50% 30%, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
}

.auth-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 2.5rem;
    width: 100%;
    max-width: 440px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.auth-card h1 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    background: linear-gradient(135deg, #c4b5fd, #67e8f9, #f9a8d4);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textGradientShift 6s ease-in-out infinite;
}

.auth-subtitle {
    color: rgba(255, 255, 255, 0.25);
    margin-bottom: 1.75rem;
    font-size: 0.95rem;
    font-weight: 400;
}

.auth-subtitle .accent {
    background: linear-gradient(135deg, #c4b5fd, #67e8f9, #f9a8d4);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    animation: textGradientShift 6s ease-in-out infinite;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.78rem;
    font-weight: 400;
    margin-bottom: 0.4rem;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.form-group input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.03);
    color: var(--text);
    font-size: 0.95rem;
    transition: border-color 0.3s, box-shadow 0.3s;
    outline: none;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.form-group input::placeholder {
    color: rgba(255,255,255,0.2);
}

.form-group input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.15);
}

.btn-full {
    width: 100%;
    text-align: center;
    margin-top: 0.5rem;
    padding: 0.85rem;
    font-size: 1rem;
    border: 1px solid rgba(139, 92, 246, 0.25);
    cursor: pointer;
    font-family: inherit;
    border-radius: 50px;
}

.btn-sm {
    padding: 0.4rem 1.1rem;
    font-size: 0.85rem;
    border-radius: 8px;
    background: var(--accent);
    color: #fff;
    font-weight: 600;
    transition: background 0.2s, transform 0.2s;
}

.btn-sm:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
}

.auth-message {
    padding: 0.75rem 1rem;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.25rem;
    text-align: center;
}

.auth-message.error {
    background: rgba(255, 71, 87, 0.12);
    color: #ff6b6b;
    border: 1px solid rgba(255, 71, 87, 0.25);
}

.auth-message.success {
    background: rgba(6, 182, 212, 0.08);
    color: var(--green);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.auth-footer {
    text-align: center;
    margin-top: 1.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.auth-footer a {
    color: var(--accent-hover);
    font-weight: 600;
    transition: color 0.2s;
}

.auth-footer a:hover {
    color: #fff;
}

/* === NAV AUTH === */
.nav-user {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.88rem;
    font-weight: 400;
    letter-spacing: 0.04em;
}

.nav-user strong {
    background: linear-gradient(135deg, #c4b5fd, #67e8f9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 500;
}

.nav-logout {
    color: rgba(244, 114, 182, 0.7) !important;
    font-weight: 500;
}

.nav-logout:hover {
    color: rgba(244, 114, 182, 1) !important;
}

/* === FOOTER (legacy) === */
footer:not(.site-footer) {
    text-align: center;
    padding: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.15);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
}

/* === TEXT GRADIENT ANIMATION === */
@keyframes textGradientShift {
    0% { background-position: 0% 50%; }
    25% { background-position: 50% 100%; }
    50% { background-position: 100% 50%; }
    75% { background-position: 50% 0%; }
    100% { background-position: 0% 50%; }
}

/* === AURORA EFFECT === */
.aurora {
    position: fixed;
    top: -25%; left: -25%;
    width: 150%; height: 150%;
    pointer-events: none;
    z-index: 0;
    mix-blend-mode: screen;
    opacity: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(72, 0, 255, 0.4) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(0, 255, 197, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(255, 0, 128, 0.3) 0%, transparent 55%),
        radial-gradient(ellipse at 60% 40%, rgba(99, 102, 241, 0.25) 0%, transparent 45%);
    animation: auroraPulse 8s ease-in-out infinite alternate, auroraFadeIn 3s ease-out forwards;
}
@keyframes auroraFadeIn { from { opacity: 0; } to { opacity: 0.3; } }
@keyframes auroraPulse {
    0%   { opacity: 0.2; transform: translate(-5%, -5%) scale(1) rotate(0deg); }
    33%  { opacity: 0.35; transform: translate(2%, -3%) scale(1.05) rotate(0.5deg); }
    66%  { opacity: 0.4; transform: translate(-3%, 2%) scale(1.1) rotate(1deg); }
    100% { opacity: 0.25; transform: translate(1%, 1%) scale(1.03) rotate(-0.5deg); }
}

/* === GRID OVERLAY === */
.grid-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridDrift 25s linear infinite, gridFadeIn 4s 0.5s ease-out forwards;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}
@keyframes gridDrift { 0% { background-position: 0 0; } 100% { background-position: 50px 50px; } }
@keyframes gridFadeIn { from { opacity: 0; } to { opacity: 1; } }

/* === SCANLINE === */
.scanline {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 2px;
    pointer-events: none;
    z-index: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(139, 92, 246, 0.15) 20%, rgba(6, 182, 212, 0.2) 50%, rgba(244, 114, 182, 0.15) 80%, transparent 100%);
    animation: scanMove 6s ease-in-out infinite;
    filter: blur(1px);
}
@keyframes scanMove {
    0%   { top: -2px; opacity: 0; }
    10%  { opacity: 1; }
    90%  { opacity: 1; }
    100% { top: 100vh; opacity: 0; }
}

/* === NOISE TEXTURE === */
.noise {
    position: fixed; top: -50%; left: -50%;
    width: 200%; height: 200%;
    pointer-events: none; z-index: 0;
    opacity: 0.02;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    animation: noiseShift 0.5s steps(5) infinite;
}
@keyframes noiseShift {
    0% { transform: translate(0, 0); } 20% { transform: translate(-2%, 1%); }
    40% { transform: translate(1%, -2%); } 60% { transform: translate(-1%, 2%); }
    80% { transform: translate(2%, -1%); } 100% { transform: translate(0, 0); }
}

/* === VIGNETTE === */
.vignette {
    position: fixed; top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none; z-index: 0;
    background: radial-gradient(ellipse at center, transparent 30%, rgba(0,0,0,0.55) 100%);
}

/* === CORNER MARKS === */
.corner { position: fixed; width: 60px; height: 60px; pointer-events: none; z-index: 0; opacity: 0; animation: cornerFadeIn 1.5s 2s ease-out forwards; }
@keyframes cornerFadeIn { from { opacity: 0; } to { opacity: 1; } }
.corner::before, .corner::after { content: ''; position: absolute; }
.corner::before { width: 30px; height: 1px; }
.corner::after  { width: 1px; height: 30px; }
.corner.tl { top: 30px; left: 30px; }
.corner.tl::before { top: 0; left: 0; background: linear-gradient(90deg, rgba(139, 92, 246, 0.2), transparent); }
.corner.tl::after  { top: 0; left: 0; background: linear-gradient(180deg, rgba(139, 92, 246, 0.2), transparent); }
.corner.tr { top: 30px; right: 30px; }
.corner.tr::before { top: 0; right: 0; background: linear-gradient(270deg, rgba(6, 182, 212, 0.2), transparent); }
.corner.tr::after  { top: 0; right: 0; background: linear-gradient(180deg, rgba(6, 182, 212, 0.2), transparent); }
.corner.bl { bottom: 30px; left: 30px; }
.corner.bl::before { bottom: 0; left: 0; background: linear-gradient(90deg, rgba(244, 114, 182, 0.2), transparent); }
.corner.bl::after  { bottom: 0; left: 0; background: linear-gradient(0deg, rgba(244, 114, 182, 0.2), transparent); }
.corner.br { bottom: 30px; right: 30px; }
.corner.br::before { bottom: 0; right: 0; background: linear-gradient(270deg, rgba(52, 211, 153, 0.2), transparent); }
.corner.br::after  { bottom: 0; right: 0; background: linear-gradient(0deg, rgba(52, 211, 153, 0.2), transparent); }

/* === ADMIN DASHBOARD === */
.dashboard-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 8rem 2rem 4rem;
    position: relative;
    z-index: 2;
}

.dashboard-header {
    margin-bottom: 2.5rem;
}

.dashboard-header h1 {
    font-size: 2.2rem;
    font-weight: 500;
    background: linear-gradient(135deg, #c4b5fd, #67e8f9, #f9a8d4);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textGradientShift 6s ease-in-out infinite;
    margin-bottom: 0.5rem;
}

.dashboard-header p {
    color: rgba(255, 255, 255, 0.3);
    font-size: 1rem;
}

/* Dash stat cards */
.dash-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.dash-stat-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: border-color 0.3s, transform 0.3s;
}

.dash-stat-card:hover {
    border-color: rgba(139, 92, 246, 0.2);
    transform: translateY(-3px);
}

.dash-stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.25rem;
}

.dash-stat-label {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* Dash toolbar */
.dash-toolbar {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.dash-toolbar .search-box {
    flex: 1;
    min-width: 200px;
}

.dash-filter-group {
    display: flex;
    gap: 0.4rem;
}

/* Table */
.dash-table-wrap {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.dash-table {
    width: 100%;
    border-collapse: collapse;
}

.dash-table thead th {
    text-align: left;
    padding: 1rem 1.25rem;
    font-size: 0.72rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.dash-table tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: background 0.2s;
}

.dash-table tbody tr:last-child {
    border-bottom: none;
}

.dash-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

.dash-table td {
    padding: 0.9rem 1.25rem;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.7);
    vertical-align: middle;
}

.td-user {
    font-weight: 500;
    color: #fff !important;
}

.td-email {
    color: rgba(255, 255, 255, 0.4) !important;
    font-family: monospace;
    font-size: 0.82rem !important;
}

.td-date {
    color: rgba(255, 255, 255, 0.3) !important;
}

.td-muted {
    color: rgba(255, 255, 255, 0.15);
}

.td-actions {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
}

/* Badges */
.dash-badge {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.dash-badge.owner {
    background: rgba(139, 92, 246, 0.15);
    border: 1px solid rgba(139, 92, 246, 0.3);
    color: #a78bfa;
}

.dash-badge.banned {
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.25);
    color: #f87171;
}

.dash-badge.active-badge {
    background: rgba(52, 211, 153, 0.12);
    border: 1px solid rgba(52, 211, 153, 0.25);
    color: #6ee7b7;
}

/* Action buttons */
.action-btn {
    padding: 0.3rem 0.65rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
    color: rgba(255, 255, 255, 0.5);
}

.action-btn:hover {
    transform: translateY(-1px);
}

.action-btn.ban {
    border-color: rgba(239, 68, 68, 0.25);
    color: #f87171;
}

.action-btn.ban:hover {
    background: rgba(239, 68, 68, 0.12);
}

.action-btn.unban {
    border-color: rgba(52, 211, 153, 0.25);
    color: #6ee7b7;
}

.action-btn.unban:hover {
    background: rgba(52, 211, 153, 0.12);
}

.action-btn.reset {
    border-color: rgba(6, 182, 212, 0.25);
    color: #67e8f9;
}

.action-btn.reset:hover {
    background: rgba(6, 182, 212, 0.12);
}

.action-btn.delete {
    border-color: rgba(239, 68, 68, 0.25);
    color: #f87171;
}

.action-btn.delete:hover {
    background: rgba(239, 68, 68, 0.15);
}

.dash-empty {
    text-align: center;
    padding: 3rem 1rem;
    color: rgba(255, 255, 255, 0.25);
    font-size: 0.95rem;
}

/* Nav dashboard link */
.nav-dashboard {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(6, 182, 212, 0.1));
    border: 1px solid rgba(139, 92, 246, 0.25);
    padding: 0.35rem 1rem;
    border-radius: 50px;
    font-size: 0.82rem;
    transition: all 0.3s ease;
}

.nav-dashboard:hover {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.25), rgba(6, 182, 212, 0.2));
    border-color: rgba(139, 92, 246, 0.4);
    transform: translateY(-1px);
}

/* Modal */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.modal-overlay[hidden] {
    display: none;
}

.modal-card {
    background: rgba(10, 10, 20, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2.5rem;
    width: 100%;
    max-width: 420px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.modal-card h2 {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 0.4rem;
}

.modal-subtitle {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.modal-subtitle strong {
    color: #a78bfa;
}

.modal-msg {
    color: #f87171;
    font-size: 0.85rem;
    min-height: 1.2em;
    margin-top: 0.5rem;
}

.modal-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.modal-actions .btn {
    flex: 1;
    text-align: center;
    padding: 0.7rem;
}

.modal-cancel {
    background: rgba(255, 255, 255, 0.03) !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
    color: rgba(255, 255, 255, 0.5) !important;
}

.modal-cancel:hover {
    background: rgba(255, 255, 255, 0.06) !important;
}

.modal-confirm {
    background: rgba(139, 92, 246, 0.2) !important;
    border: 1px solid rgba(139, 92, 246, 0.3) !important;
    color: #c4b5fd !important;
}

.modal-confirm:hover {
    background: rgba(139, 92, 246, 0.3) !important;
}

/* Toast notification */
.dash-toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    padding: 0.85rem 1.5rem;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 500;
    z-index: 10000;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s, transform 0.3s;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.dash-toast.visible {
    opacity: 1;
    transform: translateY(0);
}

.dash-toast.toast-ok {
    background: rgba(52, 211, 153, 0.15);
    border: 1px solid rgba(52, 211, 153, 0.3);
    color: #6ee7b7;
}

.dash-toast.toast-err {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #f87171;
}

/* === REDUCED MOTION === */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    nav { padding: 1rem 1.5rem; }
    .hero h1 { font-size: 2.4rem; }
    .hero p { font-size: 1.05rem; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .games-section { padding: 2rem 1.5rem; }
    .games-grid { grid-template-columns: 1fr; }
    .game-detail-header { flex-direction: column; align-items: center; text-align: center; }
    .game-detail-meta .game-tags { justify-content: center; }
    .auth-card { padding: 1.75rem; }
    .stats-bar { flex-direction: column; gap: 1.5rem; padding: 2rem; }
    .stat-divider { width: 60px; height: 1px; }
    .featured-banner { flex-direction: column; padding: 2rem; gap: 1.5rem; }
    .featured-image { width: 100%; height: 180px; }
    .steps-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .cta-card { padding: 2.5rem 1.5rem; }
    .how-it-works { padding: 3rem 1.5rem; }
    .cta-section { padding: 0 1.5rem 3rem; }
    .dash-stats { grid-template-columns: repeat(2, 1fr); }
    .dash-toolbar { flex-direction: column; }
    .dash-table-wrap { overflow-x: auto; }
    .dash-table { min-width: 600px; }
    .dashboard-section { padding: 7rem 1.5rem 3rem; }
}

@media (max-width: 480px) {
    .footer-grid { grid-template-columns: 1fr; }
}
