/* ================= RESET ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: linear-gradient(135deg, #0b0f1a 0%, #1a1f35 100%);
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* ================= CONTAINER ================= */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* ================= HEADER ================= */
header {
    background: rgba(17, 24, 42, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    border-bottom: 1px solid rgba(31, 42, 68, 0.5);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
    border-radius: 8px;
    transition: transform 0.3s;
}

.logo img:hover {
    transform: scale(1.05);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
}

.nav-links a:hover {
    color: #00e5ff;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: #00e5ff;
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

/* ================= PAGE HERO ================= */
.page-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
    background: radial-gradient(circle at center, rgba(0, 229, 255, 0.1) 0%, transparent 50%), linear-gradient(135deg, #0b0f1a 0%, #1a1f35 100%);
    position: relative;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(0,229,255,0.1)"/></svg>') repeat;
    animation: float 20s linear infinite;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-100px);
    }
}

.page-hero h1 {
    font-size: 48px;
    color: #00e5ff;
    text-shadow: 0 0 30px rgba(0, 229, 255, 0.6), 0 0 60px rgba(0, 229, 255, 0.3);
    animation: glow 2s ease-in-out infinite alternate;
    margin-bottom: 20px;
}

@keyframes glow {
    from {
        text-shadow: 0 0 30px rgba(0, 229, 255, 0.6), 0 0 60px rgba(0, 229, 255, 0.3);
    }

    to {
        text-shadow: 0 0 40px rgba(0, 229, 255, 0.8), 0 0 80px rgba(0, 229, 255, 0.5);
    }
}

.page-hero p {
    color: #b0b8c5;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-size: 18px;
}

/* ================= STAT BOXES ================= */
.stat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.stat-box {
    background: rgba(17, 24, 42, 0.8);
    border: 1px solid rgba(0, 229, 255, 0.15);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    text-align: center;
}

.stat-box:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: #00e5ff;
    box-shadow: 0 20px 40px rgba(0, 229, 255, 0.2);
}

.stat-box h3 {
    margin-bottom: 12px;
    font-size: 28px;
    color: #00e5ff;
}

.stat-box p {
    color: #b0b8c5;
    margin: 0;
}

/* ================= GAMES SECTION ================= */
.games-section {
    padding: 60px 0;
    background: rgba(17, 24, 42, 0.3);
}

/* ================= CARD ================= */
.card {
    background: rgba(17, 24, 42, 0.8);
    padding: 30px;
    margin: 20px 0;
    border-radius: 16px;
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(56, 189, 248, 0.15);
    transition: transform 0.3s;
}

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

/* ================= HELP / FAQ ================= */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.faq-item {
    background: rgba(17, 24, 42, 0.8);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(56, 189, 248, 0.15);
    transition: transform 0.3s;
}

.faq-item:hover {
    transform: translateY(-5px);
}

.faq-question {
    padding: 20px 24px;
    background: rgba(11, 18, 32, 0.9);
    color: #ffffff;
    cursor: pointer;
    position: relative;
    font-size: 18px;
    font-weight: 600;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 24px;
    top: 20px;
    font-size: 24px;
    transition: transform 0.3s;
    color: #00e5ff;
}

.faq-item.open .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 24px 24px;
    color: #b0b8c5;
    line-height: 1.7;
    display: none;
}

.faq-item.open .faq-answer {
    display: block;
}

/* ================= CONTACT FORM ================= */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.contact-form input,
.contact-form textarea {
    padding: 14px;
    border: 1px solid rgba(0, 229, 255, 0.2);
    border-radius: 8px;
    background: rgba(17, 24, 42, 0.8);
    color: #ffffff;
    font-size: 16px;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #00e5ff;
    outline: none;
    box-shadow: 0 0 10px rgba(0, 229, 255, 0.3);
}

/* ================= BUTTON ================= */
.btn {
    display: inline-block;
    padding: 14px 28px;
    background: linear-gradient(135deg, #00e5ff 0%, #0ea5e9 100%);
    color: #000;
    text-decoration: none;
    font-weight: bold;
    border-radius: 8px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 229, 255, 0.3);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 229, 255, 0.4);
}

/* ================= ABOUT US ================= */
.about-text {
    color: #cbd5e1;
}

/* ================= FOOTER ================= */
footer {
    background: rgba(17, 24, 42, 0.95);
    backdrop-filter: blur(10px);
    padding: 30px 0;
    border-top: 1px solid rgba(31, 42, 68, 0.5);
    margin-top: 60px;
}

.footer-container {
    text-align: center;
}

.footer-links {
    margin-bottom: 15px;
}

.footer-links a {
    color: #ffffff;
    margin: 0 12px;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
    position: relative;
}

.footer-links a:hover {
    color: #00e5ff;
}

.footer-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -3px;
    left: 50%;
    background: #00e5ff;
    transition: all 0.3s;
    transform: translateX(-50%);
}

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

.footer-bottom {
    font-size: 13px;
    color: #8892a6;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 15px;
    }

    .nav-links {
        gap: 15px;
    }

    .page-hero h1 {
        font-size: 36px;
    }

    .stat-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-form {
        padding: 0 20px;
    }
}

.page-hero h1 {
    font-size: 42px;
    color: #00e5ff;
}

.page-hero p {
    color: #b0b8c5;
    margin-top: 12px;
    font-size: 16px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ================= STAT BOXES ================= */
.stat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
    margin-top: 20px;
}

.stat-box {
    background: #11182a;
    border: 1px solid rgba(0, 229, 255, 0.18);
    border-radius: 16px;
    padding: 22px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
    transition: transform 0.3s, border-color 0.3s;
}

.stat-box:hover {
    transform: translateY(-4px);
    border-color: #38bdf8;
}

.stat-box h3 {
    margin-bottom: 10px;
    font-size: 24px;
    color: #00e5ff;
}

.stat-box p {
    color: #cbd5e1;
    margin: 0;
}

/* ================= CARD ================= */
.card {
    background: #11182a;
    padding: 25px;
    margin: 20px 0;
    border-radius: 16px;
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(56, 189, 248, 0.12);
}

/* ================= HELP / FAQ ================= */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.faq-item {
    background: #11182a;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(56, 189, 248, 0.12);
}

.faq-question {
    padding: 18px 20px;
    background: #0b1220;
    color: #ffffff;
    cursor: pointer;
    position: relative;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 18px;
    font-size: 24px;
    transition: transform 0.3s;
}

.faq-item.open .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 20px 18px;
    color: #b0b8c5;
    line-height: 1.7;
    display: none;
}

.faq-item.open .faq-answer {
    display: block;
}

.contact-form input,
.contact-form textarea {
    background: #0b1220;
    border: 1px solid #1f2a44;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #38bdf8;
}

.btn {
    background: #00e5ff;
    color: #000;
    padding: 12px 22px;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s, background 0.3s;
}

.btn:hover {
    background: #0ea5e9;
    transform: translateY(-2px);
}

/* ================= ABOUT US ================= */
.about-text {
    color: #cbd5e1;
}

/* ================= CONTACT ================= */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    padding: 12px;
    border: none;
    border-radius: 6px;
    background: #0b0f1a;
    color: #fff;
    border: 1px solid #1f2a44;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #00e5ff;
}

/* BUTTON */
.btn {
    background: #00e5ff;
    color: #000;
    padding: 12px;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.btn:hover {
    background: #00bcd4;
}

/* ================= HELP / FAQ ================= */
.faq-item {
    margin-bottom: 15px;
}

.faq-question {
    background: #1a2338;
    padding: 12px;
    border-radius: 6px;
    cursor: pointer;
}

.faq-answer {
    padding: 10px;
    color: #b0b8c5;
    display: none;
}

/* ================= FOOTER ================= */
footer {
    background: #11182a;
    padding: 25px 0;
    margin-top: 40px;
    border-top: 1px solid #1f2a44;
    text-align: center;
}

.footer-links a {
    color: #fff;
    margin: 0 10px;
    text-decoration: none;
}

.footer-links a:hover {
    color: #00e5ff;
}

.footer-bottom {
    font-size: 13px;
    color: #8892a6;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 10px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .page-header h1 {
        font-size: 28px;
    }
}