/* Level One Gaming - Electric Green Esports Theme */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --primary: #00FF88;
    --primary-dark: #00CC6A;
    --dark: #0A0A0A;
    --darker: #050505;
    --gray: #1A1A2E;
    --gray-light: #2A2A3E;
    --text: #E0E0E0;
    --text-light: #B0B0B0;
    --accent: #00BFFF;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--dark);
    color: var(--text);
    line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }

/* Top Bar */
.top-bar {
    background: var(--darker);
    padding: 8px 0;
    border-bottom: 1px solid var(--gray);
    font-size: 0.85rem;
    color: var(--text-light);
}
.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-bar a { color: var(--primary); }
.top-bar a:hover { text-decoration: underline; }

/* Header */
.header-main {
    background: var(--darker);
    padding: 15px 0;
    border-bottom: 2px solid var(--primary);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.header-main .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo img {
    height: 60px;
    width: auto;
}
.nav-menu { display: flex; gap: 30px; list-style: none; }
.nav-menu a {
    color: var(--text);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
    position: relative;
}
.nav-menu a:hover, .nav-menu a.active { color: var(--primary); }
.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary);
}
.header-phone {
    color: var(--primary);
    font-weight: 700;
    font-size: 1rem;
}
.btn-cta {
    background: var(--primary);
    color: var(--dark);
    padding: 10px 24px;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    border: 2px solid var(--primary);
}
.btn-cta:hover {
    background: transparent;
    color: var(--primary);
}

/* Container */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Hero Section */
.hero {
    position: relative;
    height: 550px;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.4);
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    padding: 0 40px;
}
.hero h1 {
    font-size: 3.2rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 15px;
    text-transform: uppercase;
    line-height: 1.1;
}
.hero h1 span { color: var(--primary); }
.hero p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 25px;
}

/* Section Titles */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}
.section-title h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.section-title p { color: var(--text-light); font-size: 1.1rem; }
.section-title .accent-line {
    width: 60px;
    height: 4px;
    background: var(--primary);
    margin: 15px auto 0;
}

/* Categories Grid */
.categories { padding: 80px 0; }
.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}
.category-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 280px;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid var(--gray);
}
.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.15);
    border-color: var(--primary);
}
.category-card img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}
.category-card:hover img { transform: scale(1.05); }
.category-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    padding: 30px 20px 20px;
}
.category-overlay h3 {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
}
.category-overlay p {
    color: var(--primary);
    font-size: 0.85rem;
    margin-top: 5px;
}

/* Features */
.features { padding: 60px 0; background: var(--gray); }
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.feature-item {
    text-align: center;
    padding: 30px 15px;
}
.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}
.feature-item h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 8px;
    text-transform: uppercase;
}
.feature-item p { color: var(--text-light); font-size: 0.9rem; }

/* Products Grid */
.products { padding: 80px 0; }
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.product-card {
    background: var(--gray);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--gray-light);
    transition: all 0.3s;
}
.product-card:hover {
    border-color: var(--primary);
    box-shadow: 0 5px 20px rgba(0, 255, 136, 0.1);
}
.product-card img {
    width: 100%; height: 220px;
    object-fit: cover;
}
.product-info {
    padding: 20px;
}
.product-info h3 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 8px;
}
.product-info p { color: var(--text-light); font-size: 0.9rem; margin-bottom: 12px; }
.product-price {
    color: var(--primary);
    font-size: 1.3rem;
    font-weight: 700;
}
.product-price .old-price {
    color: var(--text-light);
    text-decoration: line-through;
    font-size: 0.9rem;
    margin-left: 8px;
}

/* Builds Section */
.builds { padding: 80px 0; }
.builds-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.build-card {
    background: var(--gray);
    border-radius: 10px;
    padding: 35px 25px;
    text-align: center;
    border: 1px solid var(--gray-light);
    transition: all 0.3s;
    position: relative;
}
.build-card:hover {
    border-color: var(--primary);
    box-shadow: 0 5px 30px rgba(0, 255, 136, 0.15);
}
.build-card.featured {
    border-color: var(--primary);
    background: linear-gradient(135deg, var(--gray) 0%, rgba(0,255,136,0.05) 100%);
}
.build-card.featured::before {
    content: 'BEST SELLER';
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary);
    color: var(--dark);
    padding: 4px 10px;
    border-radius: 3px;
    font-size: 0.7rem;
    font-weight: 700;
}
.build-card h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 10px;
    text-transform: uppercase;
}
.build-price {
    color: var(--primary);
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 20px;
}
.build-specs { list-style: none; margin-bottom: 25px; }
.build-specs li {
    color: var(--text-light);
    padding: 8px 0;
    border-bottom: 1px solid var(--gray-light);
    font-size: 0.9rem;
}

/* About Section */
.about-section { padding: 80px 0; }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.about-text h2 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 20px;
}
.about-text p { color: var(--text-light); margin-bottom: 15px; }
.about-img { border-radius: 10px; overflow: hidden; border: 2px solid var(--gray-light); }
.about-img img { width: 100%; height: 100%; object-fit: cover; }

/* Stats */
.stats { padding: 60px 0; background: var(--gray); }
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}
.stat-item h3 {
    font-size: 2.5rem;
    color: var(--primary);
    font-weight: 800;
}
.stat-item p { color: var(--text-light); margin-top: 5px; text-transform: uppercase; font-size: 0.85rem; }

/* Contact */
.contact-section { padding: 80px 0; }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 14px 18px;
    margin-bottom: 15px;
    border: 1px solid var(--gray-light);
    border-radius: 6px;
    background: var(--gray);
    color: var(--text);
    font-size: 0.95rem;
    transition: border-color 0.3s;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    border-color: var(--primary);
    outline: none;
}
.contact-form textarea { height: 150px; resize: vertical; }
.contact-form button {
    background: var(--primary);
    color: var(--dark);
    padding: 14px 35px;
    border: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
}
.contact-form button:hover { background: var(--primary-dark); }
.contact-info-card {
    background: var(--gray);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 20px;
    border: 1px solid var(--gray-light);
}
.contact-info-card h4 { color: #fff; margin-bottom: 10px; }
.contact-info-card p { color: var(--text-light); }

/* Footer */
.footer {
    background: var(--darker);
    padding: 60px 0 20px;
    border-top: 2px solid var(--primary);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-col h4 {
    color: #fff;
    font-size: 1rem;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 1px;
}
.footer-col p { color: var(--text-light); font-size: 0.9rem; margin-bottom: 8px; }
.footer-col a { color: var(--text-light); font-size: 0.9rem; display: block; margin-bottom: 8px; transition: color 0.3s; }
.footer-col a:hover { color: var(--primary); }
.footer-logo img { height: 50px; margin-bottom: 15px; }
.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--gray);
    color: var(--text-light);
    font-size: 0.85rem;
}

/* Page Header */
.page-header {
    background: var(--gray);
    padding: 60px 0;
    text-align: center;
    border-bottom: 1px solid var(--gray-light);
}
.page-header h1 {
    font-size: 2.5rem;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.page-header p { color: var(--text-light); font-size: 1.1rem; }

/* Responsive */
@media (max-width: 768px) {
    .nav-menu { display: none; }
    .categories-grid, .products-grid, .builds-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 2rem; }
    .hero { height: 400px; }
}
