
        :root {
            --red: #ef4444;
            --dark: #0b0f19;
            --dark-2: #111827;
            --card: #0f172a;
            --text: #e5e7eb;
            --muted: #9ca3af;
        }

        * { box-sizing: border-box; margin: 0; padding: 0; }

        body {
            font-family: 'Inter', sans-serif;
            background: var(--dark);
            color: var(--text);
            line-height: 1.6;
        }

        a { color: inherit; text-decoration: none; }

        /* ================= NAVBAR ================= */
        header {
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            background: rgba(0,0,0,0.85);
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }

        .nav {
            max-width: 1200px;
            margin: auto;
            padding: 16px 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .logo {
            font-weight: 800;
            letter-spacing: 1px;
            color: var(--red);
            font-size: 22px;
        }

        .nav-links {
            display: flex;
            gap: 28px;
            align-items: center;
        }

        .nav-links a {
            color: var(--muted);
            font-size: 14px;
        }

        .nav-links a:hover { color: #fff; }

        .nav-actions a {
            padding: 8px 16px;
            border-radius: 6px;
            font-size: 14px;
            margin-left: 8px;
        }

        .btn-outline {
            border: 1px solid var(--red);
            color: var(--red);
        }

        .btn-primary {
            background: var(--red);
            color: #fff;
        }

        /* ================= HERO ================= */
        .hero {
    min-height: 100vh;
    padding-top: 120px;
    background:
        linear-gradient(
            to bottom,
            rgba(0,0,0,0.45),
            rgba(0,0,0,0.85)
        ),
        url('hero.jpg') center center / cover no-repeat;

    display: flex;
    align-items: center;
}

        .hero-content {
            max-width: 1200px;
            margin: auto;
            padding: 40px 20px;
        }

        .hero h1 {
            font-size: clamp(32px, 5vw, 56px);
            font-weight: 800;
            line-height: 1.1;
        }

        .hero h1 span { color: var(--red); }

        .hero p {
            margin-top: 20px;
            color: var(--muted);
            max-width: 600px;
        }

        .hero-buttons {
            margin-top: 30px;
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }

        /* ================= SECTION ================= */
        section {
            padding: 80px 20px;
        }

        .container {
            max-width: 1200px;
            margin: auto;
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-title h2 {
            font-size: clamp(26px, 4vw, 40px);
        }

        .section-title span { color: var(--red); }

        .section-title p {
            color: var(--muted);
            margin-top: 10px;
        }

        /* ================= CARDS ================= */
        .cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 24px;
        }

        .card {
            background: linear-gradient(180deg, #0f172a, #020617);
            border-radius: 16px;
            padding: 30px;
            border: 1px solid rgba(255,255,255,0.05);
        }

        .card i {
            font-size: 28px;
            color: #fff;
            background: var(--red);
            padding: 14px;
            border-radius: 10px;
            margin-bottom: 20px;
        }

        .card h3 { margin-bottom: 10px; }
        .card p { color: var(--muted); font-size: 14px; }

        /* ================= CTA ================= */
        .cta {
            background: radial-gradient(circle at top, #7f1d1d, #020617);
            text-align: center;
        }

        .cta h2 {
            font-size: clamp(28px, 4vw, 44px);
            margin-bottom: 12px;
        }

        .cta p {
            color: var(--muted);
            margin-bottom: 24px;
        }

        /* ================= FOOTER ================= */
        /* ================= FOOTER ================= */
footer {
    background: #020617;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 50px 20px 30px;
    color: #9ca3af;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

/* LOGOS */
.footer-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.footer-logos a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.footer-logos a:hover {
    transform: scale(1.08);
    opacity: 0.9;
}

.footer-logos img {
   height: 60px;
    max-width: 170px;
    object-fit: contain;
}

/* FOOTER TEXT */
.footer-text {
    font-size: 13px;
    line-height: 1.6;
    color: #9ca3af;
}

.footer-text strong {
    color: #e5e7eb;
}

/* ================= MOBILE RESPONSIVE ================= */
@media (max-width: 768px) {
    .footer-logos {
        gap: 22px;
    }

    .footer-logos img {
        height: 52px;
        max-width: 140px;
    }
}

@media (max-width: 480px) {
    footer {
        padding: 40px 15px 25px;
    }

    .footer-logos img {
        height: 46px;
        max-width: 120px;
    }

    .footer-text {
        font-size: 12px;
    }
}

    
	/*FOR LOGIN AND REG CSS*/
	/* ================= MODAL ================= */
.modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.75);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.modal.show {
    display: flex;
}

.modal-box {
    width: 100%;
    max-width: 420px;
    background: linear-gradient(180deg, #0f172a, #020617);
    border-radius: 18px;
    padding: 36px 32px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
    border: 1px solid rgba(255,255,255,0.06);
}

.modal-box h2 {
    text-align: center;
    margin-bottom: 26px;
    font-size: 26px;
}

.modal-box form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.modal-box input {
    background: #020617;
    border: 1px solid rgba(255,255,255,0.08);
    padding: 14px 16px;
    border-radius: 10px;
    color: #fff;
    font-size: 14px;
}

.modal-box input:focus {
    outline: none;
    border-color: var(--red);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 18px;
    background: none;
    border: none;
    font-size: 22px;
    color: #9ca3af;
    cursor: pointer;
}

.modal-close:hover {
    color: #fff;
}

.full {
    width: 100%;
    margin-top: 10px;
    padding: 14px;
    font-size: 15px;
}

.modal-footer {
    text-align: center;
    margin-top: 18px;
    font-size: 13px;
    color: var(--muted);
}

.modal-footer a {
    color: var(--red);
    font-weight: 600;
}

/* Mobile */
@media (max-width: 480px) {
    .modal-box {
        margin: 0 16px;
        padding: 28px 22px;
    }
}

.alert {
    position: fixed;
    top: 90px;
    right: 20px;
    padding: 14px 20px;
    border-radius: 10px;
    font-size: 14px;
    z-index: 9999;
    animation: slideIn .3s ease;
}

.alert.success {
    background: #16a34a;
    color: #fff;
}

.alert.error {
    background: #dc2626;
    color: #fff;
}

@keyframes slideIn {
    from {
        transform: translateX(30px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}
/* ================= FEATURED GAME ================= */
.featured-game {
    padding: 80px 0;
    background: #0f172a;
}

.featured-game-card {
    position: relative;
    display: block;
    border-radius: 16px;
    overflow: hidden;
    max-width: 100%;
}

.featured-game-card img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.featured-game-card:hover img {
    transform: scale(1.05);
}

.featured-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.85),
        rgba(0,0,0,0.15)
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
}

.featured-overlay h3 {
    font-size: 32px;
    color: #fff;
    margin-bottom: 10px;
}

.featured-overlay span {
    display: inline-block;
    width: fit-content;
    padding: 10px 22px;
    background: #22c55e;
    color: #000;
    font-weight: 700;
    border-radius: 999px;
}
.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}



