/* Cyber Sport Theme - Template 321 */
:root {
    --primary: #0a192f;
    --secondary: #112240;
    --accent: #64ffda;
    --text-main: #8892b0;
    --text-light: #ccd6f6;
    --white: #e6f1ff;
    --gradient-hero: linear-gradient(135deg, #0a192f 0%, #112240 100%);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--primary);
    color: var(--text-main);
    line-height: 1.6;
    padding-top: 80px; /* Header height */
    padding-bottom: 70px; /* Banner height */
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 25px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.9rem;
    border: 1px solid transparent;
}

.btn-outline {
    color: var(--accent);
    border-color: var(--accent);
    background: transparent;
}

.btn-outline:hover {
    background: rgba(100, 255, 218, 0.1);
}

.btn-primary {
    background: var(--accent);
    color: var(--primary);
    border-color: var(--accent);
}

.btn-primary:hover {
    background: #4cdbc4;
}

.btn-lg {
    padding: 15px 35px;
    font-size: 1rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: rgba(10, 25, 47, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo img { height: 40px; }

.main-nav ul {
    display: flex;
    gap: 15px;
}

.main-nav a {
    color: var(--text-light);
    font-size: 0.85rem;
    white-space: nowrap;
}

.main-nav a:hover { color: var(--accent); }

.main-nav a.active {
    color: var(--accent);
    font-weight: 700;
}

.header-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

/* Mobile Menu */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.mobile-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--accent);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--secondary);
    z-index: 1001;
    transition: 0.3s;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.mobile-menu.active { right: 0; }

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.close-menu {
    background: none;
    border: none;
    color: var(--accent);
    font-size: 2rem;
    cursor: pointer;
}

.mobile-menu nav ul {
    flex-direction: column;
    gap: 20px;
    text-align: center;
}

.mobile-menu nav a {
    font-size: 1.2rem;
    color: var(--text-light);
}

.mobile-menu nav a.active {
    color: var(--accent);
    font-weight: 700;
}

/* Hero Section (Side-by-Side) */
.hero {
    padding: 80px 0;
    min-height: 600px;
    display: flex;
    align-items: center;
    background: var(--primary);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-text p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 500px;
}

.image-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(100, 255, 218, 0.1);
    pointer-events: none;
}

.image-wrapper img {
    width: 100%;
    transition: 0.3s;
}

.image-wrapper:hover img {
    transform: scale(1.05);
}

/* Features Bar */
.features-bar {
    background: var(--secondary);
    padding: 60px 0;
    margin-top: -50px;
    position: relative;
    z-index: 2;
}

.features-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.feature-item {
    background: rgba(255,255,255,0.02);
    padding: 30px;
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: 0.3s;
}

.feature-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
}

.feat-icon {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--accent);
}

.feature-item h4 {
    color: var(--white);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.feature-item p {
    font-size: 0.9rem;
}

/* Split Content */
.section { padding: 80px 0; }
.bg-light { background: var(--secondary); }

.split-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.split-content.reverse { direction: rtl; }
.split-content.reverse > * { direction: ltr; }

.split-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.img-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: rgba(10, 25, 47, 0.9);
    color: var(--accent);
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
}

.split-text h2 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 20px;
}

.split-text p { margin-bottom: 25px; }

.link-arrow {
    color: var(--accent);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.link-arrow:hover { gap: 10px; }

/* New Layout Variations */
.section-alt {
    background-color: var(--secondary);
}

.section-dark {
    background-color: var(--primary);
}

/* Grid Layout (Games/Sports) */
.grid-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.grid-card {
    background: rgba(255,255,255,0.03);
    border-radius: 8px;
    overflow: hidden;
    transition: 0.3s;
    border: 1px solid rgba(255,255,255,0.05);
}

.grid-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.grid-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.grid-content {
    padding: 20px;
}

.grid-content h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.grid-content p {
    font-size: 0.9rem;
    color: var(--text-main);
    margin-bottom: 15px;
}

/* Promo Cards */
.promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.promo-card {
    background: linear-gradient(145deg, #112240, #0a192f);
    border: 1px solid rgba(100, 255, 218, 0.2);
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.promo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--accent);
}

.promo-card h3 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.promo-card .highlight {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
    margin: 20px 0;
    display: block;
}

/* Steps Layout */
.steps-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.step-item {
    flex: 1;
    min-width: 250px;
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--accent);
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 0 20px rgba(100, 255, 218, 0.4);
}

.step-item h4 {
    color: var(--white);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

/* FAQ */
.faq-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.text-center { text-align: center; }
.mb-5 { margin-bottom: 3rem; }

.faq-card {
    background: var(--secondary);
    margin-bottom: 15px;
    border-radius: 6px;
    overflow: hidden;
}

.faq-header {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--white);
    font-weight: 600;
}

.faq-header:hover { background: rgba(255,255,255,0.02); }

.faq-body {
    padding: 0 20px 20px;
    display: none;
    color: var(--text-main);
    border-top: 1px solid rgba(255,255,255,0.05);
}

.icon { color: var(--accent); font-size: 1.2rem; }

/* SEO Block */
.seo-block {
    background: var(--primary);
    border-top: 1px solid rgba(255,255,255,0.05);
}

.seo-content h2 { color: var(--white); margin-bottom: 15px; }

/* Footer */
.footer {
    background: #020c1b;
    padding: 80px 0 40px;
    margin-top: 60px;
    font-size: 0.9rem;
    border-top: 1px solid rgba(100, 255, 218, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo { margin-bottom: 20px; opacity: 0.8; }

.footer-col h4 {
    color: var(--white);
    margin-bottom: 20px;
}

.footer-col ul li { margin-bottom: 10px; }
.footer-col a:hover { color: var(--accent); }

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

/* Bottom Banner */
.bottom-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background: var(--accent);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
    color: var(--primary);
    font-weight: bold;
    gap: 20px;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
}

.banner-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.tag {
    background: var(--primary);
    color: var(--accent);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
}

.btn-banner {
    background: var(--primary);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 900px) {
    .main-nav { display: none; }
    .mobile-toggle { display: flex; }
    .hero-grid, .split-content { grid-template-columns: 1fr; gap: 40px; }
    .split-content.reverse { direction: ltr; }
    .hero { text-align: center; padding-top: 120px; }
    .hero-text p { margin: 0 auto 30px; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
}

@media (max-width: 600px) {
    .header-actions {
        gap: 8px;
    }
    .header-actions .btn { 
        display: inline-block; /* Show buttons on mobile */
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    .mobile-toggle { margin-left: 5px; }
    .hero-text h1 { font-size: 2.5rem; }
    .bottom-banner { flex-direction: column; height: auto; padding: 10px; gap: 5px; }
    .banner-content { flex-direction: column; text-align: center; gap: 5px; }
    body { padding-bottom: 100px; }
}
