/* --- Global Resets & Variables --- */
:root {
    --bg-main: #0a0d14;
    --bg-card: #121824;
    --bg-nav: rgba(10, 13, 20, 0.95);
    --primary: #cfab51;
    --primary-grad: linear-gradient(135deg, #bf953f 0%, #fcf6ba 25%, #b38728 50%, #fbf5b7 75%, #aa771c 100%);
    --text-light: #ffffff;
    --text-muted: #a0aec0;
    --accent: #e53e3e;
    --font-stack: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    font-family: var(--font-stack);
    background-color: var(--bg-main);
    color: var(--text-light);
}

body {
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.standard-width {
    max-width: 800px;
}

.text-center { text-align: center; }
.text-gradient {
    background: var(--primary-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--primary-grad);
    color: #1a1a1a;
    box-shadow: 0 4px 15px rgba(191, 149, 63, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(191, 149, 63, 0.6);
}

.btn-secondary {
    background: #ffffff;
    color: #111;
}

.btn-secondary:hover {
    background: #f0f0f0;
    transform: scale(1.03);
}

.btn-header {
    background: transparent;
    border: 2px solid #cfab51;
    color: var(--primary);
    padding: 8px 20px;
    font-size: 0.9rem;
}

.btn-header:hover {
    background: var(--primary-grad);
    color: #111;
}

.icon {
    margin-right: 8px;
}

/* --- Header & Navigation --- */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--bg-nav);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(207, 171, 81, 0.15);
    padding: 15px 0;
}

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

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    text-decoration: none;
    color: var(--text-light);
    letter-spacing: 1px;
}

.logo-accent {
    color: #cfab51;
}

.navbar ul {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
    color: var(--primary);
}

.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.mobile-nav-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: var(--text-light);
    transition: var(--transition);
}

/* --- Hero Section --- */
.hero-section {
    padding: 140px 0 80px 0;
    background: radial-gradient(circle at top right, rgba(207, 171, 81, 0.1), transparent 50%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.badge {
    display: inline-block;
    background: rgba(229, 62, 62, 0.15);
    color: #feb2b2;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(229, 62, 62, 0.3);
}

.hero-content h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 800;
}

.hero-content p {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 35px;
}

.hero-graphic {
    background: linear-gradient(145deg, #1b2336, #111622);
    border: 2px solid rgba(207, 171, 81, 0.3);
    height: 380px;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    position: relative;
}

.card-stack {
    font-size: 4rem;
    margin-bottom: 15px;
    letter-spacing: -10px;
    animation: bounce 3s ease infinite;
}

.app-mockup-text {
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* --- Section Structure --- */
section {
    padding: 80px 0;
}

.section-title {
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.section-title p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* --- Features Section --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--bg-card);
    padding: 35px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(207, 171, 81, 0.3);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* --- Games Section --- */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

.game-item {
    background: linear-gradient(180deg, #161e2e, #121824);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.03);
    transition: var(--transition);
}

.game-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.game-thumb {
    font-size: 3.5rem;
    margin-bottom: 15px;
}

.game-item h3 {
    font-size: 1.15rem;
}

/* --- Benefits Section --- */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.benefit-item {
    border-left: 4px solid var(--primary);
    background: var(--bg-card);
    padding: 20px 25px;
    border-radius: 0 12px 12px 0;
}

.benefit-item h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--primary);
}

.benefit-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* --- Stats Section --- */
.stats-section {
    background: #0f1420;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary);
}

.stat-label {
    color: var(--text-muted);
    font-size: 1rem;
}

/* --- FAQ Section --- */
.faq-accordion-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: var(--bg-card);
    border-radius: 8px;
    overflow: hidden;
}

.faq-trigger {
    width: 100%;
    padding: 20px;
    background: transparent;
    border: none;
    text-align: left;
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-trigger .arrow::before {
    content: '+';
    font-size: 1.3rem;
    color: var(--primary);
}

.faq-item.open .faq-trigger .arrow::before {
    content: '−';
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
    padding: 0 20px;
}

.faq-item.open .faq-content {
    max-height: 1000px;
    padding: 0 20px 20px 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.faq-content p {
    color: var(--text-muted);
    font-size: 1rem;
    padding-top: 15px;
}

/* --- Bottom CTA --- */
.bottom-cta-section {
    background: linear-gradient(rgba(10,13,20,0.8), rgba(10,13,20,0.9)) center/cover no-repeat;
    padding: 100px 0;
    border-top: 1px solid rgba(207,171,81,0.2);
}

.bottom-cta-section h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.bottom-cta-section p {
    color: var(--text-muted);
    font-size: 1.2rem;
    margin-bottom: 35px;
}

/* --- Footer --- */
.main-footer {
    background: #06080d;
    padding: 50px 0 30px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-logo {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.disclaimer {
    font-size: 0.85rem;
    color: #a0a0a0;
    max-width: 900px;
    margin: 0 auto 25px auto;
    line-height: 1.5;
}

/* Footer Social Media Channels Layout Block */
.footer-socials {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px auto;
    padding: 5px 0;
}

.social-icon {
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.3s ease-in-out;
    color: #ffffff;
}

.social-icon.fb { background-color: #1877F2; }
.social-icon.tg { background-color: #0088cc; }
.social-icon.yt { background-color: #FF0000; }

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.15);
    opacity: 0.9;
}

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

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    margin: 0 10px;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--primary);
}

.copyright {
    font-size: 0.85rem;
    color: #555;
}

/* --- Keyframes --- */
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* --- Responsive Breakpoints --- */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-content h1 { font-size: 2.6rem; }
    .hero-cta-group { justify-content: center; }
    .hero-graphic { height: 280px; }
}

@media (max-width: 768px) {
    .navbar {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg-nav);
        border-bottom: 1px solid rgba(207, 171, 81, 0.2);
        padding: 20px;
    }
    .navbar.active { display: block; }
    .navbar ul { flex-direction: column; gap: 15px; text-align: center; }
    .mobile-nav-toggle { display: flex; }
    .btn-header { display: none; }
    .section-title h2 { font-size: 2rem; }
}
