:root {
    --primary: #007bff; /* Electric Blue */
    --primary-dark: #0056b3;
    --accent: #39ff14; /* Neon Green */
    --dark-main: #0c0c0c;
    --dark-alt: #161616;
    --dark-card: #222222;
    --text-white: #f8f9fa;
    --text-gray: #a0a0a0;
    --font-head: 'Orbitron', sans-serif;
    --font-body: 'Outfit', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body.gaming-theme {
    font-family: var(--font-body);
    background-color: var(--dark-main);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

.text-center { text-align: center; }
.bg-dark-alt { background-color: var(--dark-alt); }
.mt-3 { margin-top: 1rem; }
.text-hover-green:hover { color: var(--accent); }

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-head);
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

h2 {
    font-size: 2.6rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, var(--primary), var(--accent));
    border-radius: 2px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 0.9rem 2.2rem;
    border-radius: 4px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--font-head);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.5);
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
}

.btn-outline:hover {
    background-color: var(--accent);
    color: var(--dark-main);
    box-shadow: 0 0 15px var(--accent);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1rem 0;
    z-index: 1000;
    transition: var(--transition);
    background-color: rgba(12, 12, 12, 0.8);
    backdrop-filter: blur(10px);
}

.navbar.scrolled {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(57, 255, 20, 0.3);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.5rem;
    font-weight: 900;
    font-family: var(--font-head);
    color: var(--text-white);
}

.logo-img {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    border: 2px solid var(--accent);
    object-fit: cover;
}

.logo span {
    background: linear-gradient(to right, #fff, var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1px;
    position: relative;
    color: var(--text-gray);
}

.nav-links a:hover {
    color: var(--accent);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: var(--transition);
}

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

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: radial-gradient(circle at 70% 30%, rgba(0, 123, 255, 0.1), transparent 50%),
                radial-gradient(circle at 20% 80%, rgba(57, 255, 20, 0.05), transparent 40%);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(12, 12, 12, 0.9), rgba(12, 12, 12, 0.4));
}

.hero-content {
    position: relative;
    z-index: 1;
    padding-top: 80px;
}

.hero-text {
    max-width: 800px;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: rgba(57, 255, 20, 0.1);
    color: var(--accent);
    border: 1px solid var(--accent);
    border-radius: 4px;
    font-weight: 800;
    font-size: 0.8rem;
    margin-bottom: 2rem;
    letter-spacing: 2px;
}

.hero-text h1 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
}

.hero-text h1 span {
    color: var(--accent);
    text-shadow: 0 0 20px rgba(57, 255, 20, 0.4);
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: var(--text-gray);
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
}

/* Services */
.services {
    padding: 8rem 0;
}

.section-header p {
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-top: 1.2rem;
    margin-bottom: 4rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background-color: var(--dark-card);
    padding: 3.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    border-bottom: 3px solid transparent;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    border-bottom-color: var(--accent);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.service-icon {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 10px rgba(57, 255, 20, 0.3));
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

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

/* Gallery */
.gallery {
    padding: 8rem 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(255,255,255,0.05);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Reviews */
.reviews {
    padding: 8rem 0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
}

.review-item {
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid var(--dark-card);
    transition: var(--transition);
}

.review-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.review-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    background-color: #fff;
}

/* Contact */
.contact {
    padding: 8rem 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
}

.contact-info h2 {
    text-align: left;
    margin-bottom: 2.5rem;
}

.contact-info h2::after {
    left: 0;
    transform: none;
}

.contact-info > p {
    color: var(--text-gray);
    margin-bottom: 3.5rem;
}

.info-item {
    display: flex;
    gap: 1.8rem;
    margin-bottom: 2.5rem;
}

.info-item .icon {
    font-size: 1.6rem;
    color: var(--accent);
}

.info-item h4 {
    margin-bottom: 0.4rem;
}

.info-item p {
    color: var(--text-gray);
}

.contact-map {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(0,0,0,0.4);
}

/* Footer */
footer {
    padding: 5rem 0 3rem;
    background-color: #050505;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-logo {
    height: 60px;
    width: 60px;
    border-radius: 50%;
    margin-bottom: 1.5rem;
}

.footer-brand h3 {
    font-size: 1.8rem;
    color: #fff;
}

.footer-brand span {
    color: var(--accent);
}

.footer-bottom {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .contact-map {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .nav-links, .nav-btn {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .hero-text h1 {
        font-size: 3.2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    /* Mobile Menu */
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--dark-main);
        padding: 3rem;
        border-bottom: 2px solid var(--accent);
    }
}
