﻿:root {
    --bg-main: #020205;
    --bg-card: rgba(8, 8, 16, 0.65);
    --primary: #0072ff;      /* Electric Blue */
    --secondary: #00c6ff;    /* Cyan Light Blue */
    --accent: #00f5d4;       /* Neon Cyan */
    --text-main: #ffffff;
    --text-muted: #7f8c9d;
    --border-glow: rgba(0, 114, 255, 0.15);
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: 'Plus Jakarta Sans', sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Cyber Space Background elements */
.space-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -10;
    background-color: #030306;
}

.cyber-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 114, 255, 0.08) 1.5px, transparent 1.5px),
        linear-gradient(90deg, rgba(0, 114, 255, 0.08) 1.5px, transparent 1.5px);
    background-size: 80px 80px;
    background-position: center;
}

/* Header Navigation */
.header {
    background: rgba(4, 4, 8, 0.85);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-bottom: 1px solid rgba(0, 114, 255, 0.2);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    animation: slideDown 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

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

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.brand-logo {
    height: 35px;
    filter: drop-shadow(0 0 10px rgba(0, 114, 255, 0.5));
    transition: var(--transition);
}

.brand:hover .brand-logo {
    transform: rotate(360deg) scale(1.1);
}

.brand-text {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: #fff;
    letter-spacing: 0.05em;
}

.brand-text span {
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.navbar {
    display: flex;
    gap: 25px;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transition: var(--transition);
}

.nav-link:hover {
    color: #fff;
}

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

.online-users-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(46, 204, 113, 0.1);
    border: 1px solid rgba(46, 204, 113, 0.2);
    padding: 6px 12px;
    border-radius: 50px;
}

.pulse-green-dot {
    width: 8px;
    height: 8px;
    background-color: #2ecc71;
    border-radius: 50%;
    box-shadow: 0 0 8px #2ecc71;
    animation: pulse 1.8s infinite;
}

.online-count-text {
    font-size: 0.75rem;
    font-weight: 600;
    color: #2ecc71;
}

/* Two-Column Asymmetric Hero Section */
.hero {
    padding: 100px 0 60px 0;
    position: relative;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
}

.hero-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.badge-status {
    align-self: flex-start;
    background: rgba(0, 114, 255, 0.15);
    border: 1px solid rgba(0, 114, 255, 0.3);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.badge-status .dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent);
    animation: pulse 1.5s infinite;
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.8rem;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.hero-title span {
    background: linear-gradient(135deg, var(--primary), var(--secondary) 50%, var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: glowText 8s ease infinite alternate;
}

.hero-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 540px;
}

.hero-actions {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    box-shadow: 0 0 20px rgba(0, 114, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 0 30px rgba(0, 198, 255, 0.6);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.02);
    border-color: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.btn-nav {
    background: rgba(0, 114, 255, 0.1);
    border-color: rgba(0, 114, 255, 0.3);
    color: #fff;
    padding: 8px 16px;
    font-size: 0.8rem;
}

.btn-nav:hover {
    background: var(--primary);
    box-shadow: 0 0 15px rgba(0, 114, 255, 0.4);
    transform: translateY(-2px);
}

.hero-right {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: floatImage 6s ease-in-out infinite;
}

.anticheat-showcase {
    position: relative;
    width: 100%;
    max-width: 380px;
    aspect-ratio: 1/1;
    border-radius: 20px;
    background: radial-gradient(circle, rgba(0, 114, 255, 0.15) 0%, transparent 70%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.anticheat-consolidated-img {
    width: 95%;
    height: auto;
    filter: drop-shadow(0 15px 30px rgba(0, 114, 255, 0.3));
    transition: var(--transition);
}

.anticheat-consolidated-img:hover {
    filter: drop-shadow(0 20px 40px rgba(0, 198, 255, 0.5)) hue-rotate(15deg);
}

/* Key Features Section */
.features-proposition-section {
    padding: 60px 0;
    position: relative;
}

.features-prop-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.prop-card {
    background: rgba(8, 8, 16, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 25px 20px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    overflow: hidden;
}

.prop-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 114, 255, 0.05), transparent);
    opacity: 0;
    transition: var(--transition);
}

.prop-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-glow);
    box-shadow: 0 10px 30px rgba(0, 114, 255, 0.1);
}

.prop-card:hover::before {
    opacity: 1;
}

.prop-icon {
    font-size: 1.6rem;
    color: var(--secondary);
    background: rgba(0, 198, 255, 0.08);
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    border: 1px solid rgba(0, 198, 255, 0.15);
    transition: var(--transition);
}

.prop-card:hover .prop-icon {
    background: var(--secondary);
    color: #000;
    box-shadow: 0 0 15px rgba(0, 198, 255, 0.4);
    transform: scale(1.05);
}

.prop-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
}

.prop-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Game Selection / Catalog Section */
.game-selection-section {
    padding: 80px 0;
    position: relative;
}

.stats-panel {
    background: rgba(4, 4, 8, 0.9);
    border: 1px solid var(--border-glow);
    border-radius: 16px;
    padding: 25px 35px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 10px 35px rgba(0, 114, 255, 0.08);
    position: relative;
    z-index: 10;
}

.stat-item {
    text-align: center;
    transition: var(--transition);
}

.stat-item:hover {
    transform: scale(1.05);
}

.stat-item h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #fff, var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-item p {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 5px;
}

.stats-panel .divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
}

/* Game Grid & Cards */
.game-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 0 auto;
}

.game-card-custom {
    background: rgba(8, 8, 16, 0.65);
    border: 1px solid rgba(0, 114, 255, 0.15);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.game-card-custom:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 114, 255, 0.4) !important;
    box-shadow: 0 15px 35px rgba(0, 114, 255, 0.2) !important;
}

.game-card-custom:hover img {
    transform: scale(1.04) !important;
}

/* Reviews / Testimonials Section */
.reviews-section {
    padding: 60px 0;
    position: relative;
}

.section-head {
    text-align: center;
    margin-bottom: 40px;
}

.section-tag {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--secondary);
    letter-spacing: 0.15em;
    display: block;
    margin-bottom: 10px;
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.3rem;
    font-weight: 700;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.review-card {
    background: rgba(8, 8, 16, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 15px;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 114, 255, 0.2);
    box-shadow: 0 10px 25px rgba(0, 114, 255, 0.08);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-avatar {
    width: 38px;
    height: 38px;
    background: rgba(88, 101, 242, 0.1);
    color: #5865f2;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    border: 1px solid rgba(88, 101, 242, 0.2);
}

.username {
    font-size: 0.9rem;
    font-weight: 600;
}

.review-date {
    font-size: 0.7rem;
    color: var(--text-muted);
    display: block;
    margin-top: 2px;
}

.rating {
    color: #f1c40f;
    font-size: 0.7rem;
    display: flex;
    gap: 3px;
}

.review-text {
    font-size: 0.85rem;
    color: #cbd5e1;
    line-height: 1.6;
}

.verified-badge {
    font-size: 0.75rem;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
}

/* FAQ Section */
.faq-section {
    padding: 60px 0 100px 0;
    position: relative;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-card {
    background: rgba(8, 8, 16, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
}

.faq-card:hover {
    border-color: var(--border-glow);
    background: rgba(8, 8, 16, 0.6);
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1rem;
}

.faq-question i {
    font-size: 0.85rem;
    color: var(--text-muted);
    transition: var(--transition);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 0 25px;
}

.faq-answer p {
    padding-bottom: 20px;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

.faq-card.active {
    background: rgba(8, 8, 16, 0.7);
    border-color: rgba(0, 114, 255, 0.2);
    box-shadow: 0 10px 25px rgba(0, 114, 255, 0.05);
}

.faq-card.active .faq-answer {
    max-height: 200px;
}

.faq-card.active .faq-question i {
    transform: rotate(135deg);
    color: #fff;
}

/* Footer Section */
.footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 35px 0;
    background: #030307;
    text-align: center;
    position: relative;
    z-index: 10;
}

.footer-logo {
    height: 40px;
    filter: drop-shadow(0 0 10px rgba(0, 114, 255, 0.4));
    margin-bottom: 15px;
}

.footer p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Animation Keyframes Definition */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.15); }
}

@keyframes floatImage {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

@keyframes glowText {
    0% { filter: drop-shadow(0 0 2px rgba(0, 114, 255, 0.1)); }
    100% { filter: drop-shadow(0 0 12px rgba(0, 198, 255, 0.4)); }
}

/* Responsive Adaptation (Mobile & Tablet Optimization) */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    .hero-left {
        align-items: center;
    }
    .hero-title {
        font-size: 3.2rem;
    }
    .features-prop-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .game-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    .product-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
}

@media (max-width: 768px) {
    .navbar {
        display: none;
    }
    .stats-panel {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }
    .stats-panel .divider {
        width: 80%;
        height: 1px;
    }
    .hero-title {
        font-size: 2.6rem;
    }
    .features-prop-grid {
        grid-template-columns: 1fr;
    }
    .online-users-badge {
        display: none; /* Hide on smaller phones to save navbar space */
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    .btn {
        width: 100%;
    }
}
