

:root {
    --bg-1: #121212;
    --bg-2: #1e1e1e;
    --accent-1: #c026d3;
    --accent-2: #a855f7;
    --text-color: #f3f4f6;
    --header-bg: rgba(18, 18, 18, 0.9);
    --font-main: "Rajdhani", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: var(--font-main);
    background-color: var(--bg-1);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: color 0.3s ease; }
a:hover { color: var(--accent-1); }
ul { list-style: none; }

.hub-wrap { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

.hero-buttons { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; margin-top: 30px; }
.hub-hero-title { font-size: 5.5rem; }
.hub-hero-subtitle { font-size: 1.4rem; }

.about-title { font-size: 3.5rem; }
/* Navbar */
.hub-topbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    background: var(--header-bg);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.hub-nav-wrap { display: flex; justify-content: space-between; align-items: center; height: 70px; }
.hub-brand { display: flex; align-items: center; gap: 10px; font-size: 1.5rem; font-weight: bold; color: var(--accent-1); }
.hub-links { display: flex; gap: 20px; }
.hub-links a { font-weight: 600; text-transform: uppercase; font-size: 0.9rem; letter-spacing: 1px; }
.btn-trigger-hub { display: none; background: none; border: none; color: var(--text-color); cursor: pointer; }

.about-title { font-size: 3.5rem; }
/* Main Padding */
main { padding-top: 70px; min-height: calc(100vh - 200px); }

/* Typography */
h1, h2, h3 { margin-bottom: 1rem; font-weight: 700; color: #fff; }
h1 { font-size: 3rem; background: linear-gradient(45deg, var(--accent-1), var(--accent-2)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
h2 { font-size: 2.2rem; }
p { margin-bottom: 1rem; color: rgba(255,255,255,0.7); }

/* Buttons */
.hub-action {
    display: inline-block;
    background: linear-gradient(45deg, var(--accent-1), var(--accent-2));
    color: #fff;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hub-ghost {
    background: transparent;
    border: 2px solid var(--accent-1);
    color: var(--accent-1);
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}
.hub-ghost:hover {
    background: var(--accent-1);
    color: #fff;
    box-shadow: 0 0 15px var(--accent-1);
}

.hub-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3), 0 0 15px var(--accent-1);
    color: #fff;
}
.hub-action-outline {
    background: transparent;
    border: 2px solid var(--accent-1);
    color: var(--accent-1);
}
.hub-action-outline:hover { background: var(--accent-1); color: #fff; }

/* Hero Section */
.hub-banner {
    min-height: 80vh;
    display: flex; align-items: center; justify-content: center;
    text-align: center;
    padding: 100px 20px;
    background: radial-gradient(circle at center, var(--bg-2) 0%, var(--bg-1) 100%);
    position: relative;
    overflow: hidden;
}
.hub-banner::before {
    content: ''; position: absolute; width: 150%; height: 150%;
    background: conic-gradient(from 0deg at 50% 50%, transparent, var(--accent-1), transparent);
    animation: rotate 20s linear infinite;
    opacity: 0.05;
}
@keyframes rotate { 100% { transform: rotate(360deg); } }
.hub-banner-content { position: relative; z-index: 1; max-width: 800px; }

/* Grid Layout */
.hub-pad { padding: 80px 20px; }
.text-center { text-align: center; }
.mb-4 { margin-bottom: 2rem; }

/* Game Cards */
.hub-matrix {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 30px;
}
.neon-box {
    background: var(--bg-2);
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.05);
    transform-style: preserve-3d;
}
.neon-box .hub-pic-wrap {
    width: 100%; height: 200px; overflow: hidden;
}
.neon-box img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.5s ease;
}
.neon-box:hover img { transform: scale(1.1); }
.hub-game-data { padding: 20px; transform: translateZ(30px); }
.hub-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 15px; }
.hub-pill {
    background: rgba(255,255,255,0.1);
    padding: 5px 12px; border-radius: 20px;
    font-size: 0.75rem; font-weight: bold;
    color: var(--accent-2);
}
.neon-box h3 { font-size: 1.4rem; margin-bottom: 10px; }
.hub-hover-fx {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.85);
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    padding: 20px; text-align: center;
    opacity: 0; transition: opacity 0.3s ease;
    transform: translateZ(50px);
}
.neon-box:hover .hub-hover-fx { opacity: 1; }
.hub-hover-fx p { margin-bottom: 20px; font-size: 0.9rem; }

/* Forms */
.hub-contact-ui { max-width: 600px; margin: 0 auto; background: var(--bg-2); padding: 40px; border-radius: 15px; }
.hub-input-wrap { margin-bottom: 20px; }
.hub-input-wrap label { display: block; margin-bottom: 8px; font-weight: bold; }
.hub-input-wrap input, .hub-input-wrap textarea {
    width: 100%; padding: 12px;
    background: rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px; color: #fff;
    font-family: inherit;
}
.hub-input-wrap input:focus, .hub-input-wrap textarea:focus {
    outline: none; border-color: var(--accent-1);
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

/* FAQ Accordion */
.hub-faq-block {
    background: var(--bg-2);
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
}
.hub-faq-q {
    padding: 20px;
    display: flex; justify-content: space-between; align-items: center;
    cursor: pointer; font-weight: bold;
    transition: background 0.3s ease;
}
.hub-faq-q:hover { background: rgba(255,255,255,0.05); color: var(--accent-1); }
.hub-faq-a {
    padding: 0 20px; max-height: 0; overflow: hidden;
    transition: all 0.3s ease;
    color: rgba(255,255,255,0.7);
}
.hub-faq-block.active .hub-faq-a { padding: 20px; max-height: 500px; border-top: 1px solid rgba(255,255,255,0.05); }
.hub-faq-block.active .hub-faq-icon { transform: rotate(45deg); }
.hub-faq-icon { transition: transform 0.3s ease; color: var(--accent-1); font-size: 1.5rem; }

/* Testimonials */
.testimonials { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.testimonial-card {
    background: var(--bg-2); padding: 30px; border-radius: 15px;
    position: relative;
    border-left: 4px solid var(--accent-1);
}
.testimonial-card::before {
    content: '\201C'; position: absolute; top: 10px; right: 20px;
    font-size: 4rem; color: rgba(255,255,255,0.05); font-family: serif;
}

/* About Section icons */
.about-features { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-top: 40px; }
.feature-box {
    text-align: center; padding: 30px; background: var(--bg-2); border-radius: 15px;
    transition: transform 0.3s ease;
}
.feature-box:hover { transform: translateY(-10px); }
.feature-icon { margin-bottom: 20px; color: var(--accent-1); display: inline-block; animation: float 3s ease-in-out infinite; }
@keyframes float { 0% { transform: translateY(0); } 50% { transform: translateY(-10px); } 100% { transform: translateY(0); } }

/* Single Game Page */
.detail-title { font-size: 3rem; }

.hub-detail-hero {
    display: flex; gap: 40px; align-items: flex-start;
    background: var(--bg-2); padding: 40px; border-radius: 20px; margin-bottom: 40px;
}
.hub-detail-pic { flex: 0 0 400px; border-radius: 15px; overflow: hidden; box-shadow: 0 20px 40px rgba(0,0,0,0.5); }
.hub-detail-pic img { width: 100%; height: auto; display: block; }
.hub-detail-stats { flex: 1; }
.hub-meta-stats { display: flex; gap: 20px; margin: 20px 0; color: var(--accent-2); font-weight: bold; }

/* Content Pages (Policies) */
.content-page { max-width: 800px; margin: 0 auto; background: var(--bg-2); padding: 40px; border-radius: 15px; }
.content-page h2 { margin-top: 2rem; margin-bottom: 1rem; color: var(--accent-1); font-size: 1.5rem; }
.content-page ul { margin-left: 20px; margin-bottom: 1rem; color: rgba(255,255,255,0.7); }
.content-page li { margin-bottom: 0.5rem; }

/* Footer */
.hub-base-footer { background: var(--bg-2); padding: 60px 0 20px; border-top: 1px solid rgba(255,255,255,0.05); margin-top: 50px; }
.hub-foot-matrix { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; margin-bottom: 40px; }
.hub-foot-panel h3 { margin-bottom: 20px; color: var(--accent-1); font-size: 1.2rem; }
.hub-foot-panel a { display: block; margin-bottom: 10px; color: rgba(255,255,255,0.6); }
.hub-foot-panel a:hover { color: var(--accent-1); }
.hub-base-footer-bottom { text-align: center; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.05); color: rgba(255,255,255,0.4); }

/* Message box */
#formMessage { margin-top: 20px; padding: 15px; border-radius: 8px; display: none; }
#formMessage.success { background: rgba(0, 255, 0, 0.1); color: #4ade80; border: 1px solid #4ade80; }
#formMessage.error { background: rgba(255, 0, 0, 0.1); color: #f87171; border: 1px solid #f87171; }

@media (max-width: 768px) {
    .hub-detail-hero { padding: 20px !important; }

    .about-title { font-size: 2.2rem !important; }

    .detail-title { font-size: 2rem !important; }

    .desktop-only { display: none !important; }
    .hub-hero-title { font-size: 2.5rem !important; }
    .hub-hero-subtitle { font-size: 1.1rem !important; }
    .hub-links {
        display: none; position: absolute; top: 70px; left: 0; width: 100%;
        background: var(--bg-2); flex-direction: column; padding: 20px; gap: 15px;
    }
    .hub-links.active { display: flex; }
    .btn-trigger-hub { display: block; }
    h1 { font-size: 2.2rem; }
    .hub-detail-hero { flex-direction: column; }
    .hub-detail-pic { flex: none; width: 100%; }
}

    