/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #1A1A1A;
    color: #FFFFFF;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #00FF41, #00E63A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
}

/* Header */
.header {
    background-color: #2B2B2B;
    padding: 1rem 0;
    border-bottom: 1px solid #3A3A3A;
}

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

.logo-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo {
    width: 40px;
    height: 40px;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFFFF;
}

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

.page-nav a {
    color: #B3B3B3;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.page-nav a:hover {
    color: #00FF41;
}

/* Hero Section */
.hero {
    padding: 4rem 0;
    text-align: center;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 3rem;
}

.hero-content {
    text-align: left;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    width: 100%;
    max-width: 500px;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    border: 2px solid #00FF41;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #00FF41, #00E63A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    color: #E5E7EB;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-button {
    background-color: #00FF41;
    color: #1A1A1A;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    background-color: #00E63A;
    transform: translateY(-2px);
}

/* Features Overview */
.features-overview {
    padding: 4rem 0;
    text-align: center;
    background-color: #1A1A1A;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background-color: #2B2B2B;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #3A3A3A;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: #00FF41;
    transform: translateY(-5px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background-color: #1A1A1A;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 30px;
    height: 30px;
}

.feature-card h3 {
    color: #00FF41;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.feature-card p {
    color: #E5E7EB;
    line-height: 1.6;
}

/* Mobile Esports Intel */
.intel-section {
    padding: 4rem 0;
    text-align: center;
}

.content-split {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-top: 3rem;
}

.content-split.reverse {
    flex-direction: row-reverse;
}

.text-content {
    flex: 1;
    text-align: left;
}

.text-content h2 {
    color: #00FF41;
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: left;
    background: none;
    -webkit-text-fill-color: #00FF41;
}

.text-content p {
    color: #E5E7EB;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    color: #E5E7EB;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.feature-list li::before {
    content: "✓";
    color: #00FF41;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.visual-content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.section-image {
    width: 100%;
    max-width: 400px;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    border: 2px solid #00FF41;
}

.analytics-image {
    width: 100%;
    max-width: 800px;
    height: 350px;
    object-fit: cover;
    border-radius: 12px;
    border: 2px solid #00FF41;
}

/* Team Roster Tracker */
.roster-section {
    padding: 4rem 0;
    text-align: center;
    background-color: #1A1A1A;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #00FF41;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #E5E7EB;
    font-size: 0.9rem;
}

/* Tactics & Strategy */
.tactics-section {
    padding: 4rem 0;
    text-align: center;
}

.tactics-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.tactics-item {
    background-color: #2B2B2B;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #3A3A3A;
    transition: all 0.3s ease;
}

.tactics-item:hover {
    border-color: #00FF41;
    transform: translateY(-5px);
}

.tactics-item h4 {
    color: #00FF41;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.tactics-item p {
    color: #E5E7EB;
    line-height: 1.6;
}

/* Products Section */
.products-section {
    padding: 4rem 0;
    text-align: center;
    background-color: #1A1A1A;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.product-card {
    background-color: #2B2B2B;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #3A3A3A;
    transition: all 0.3s ease;
}

.product-card:hover {
    border-color: #00FF41;
    transform: translateY(-5px);
}

.product-card.featured {
    border-color: #00FF41;
    position: relative;
}

.product-card.featured::before {
    content: "Most Popular";
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #00FF41;
    color: #1A1A1A;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.product-card h3 {
    color: #00FF41;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.price {
    color: #00FF41;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.product-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    text-align: left;
}

.product-features li {
    color: #E5E7EB;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.product-features li::before {
    content: "•";
    color: #00FF41;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.product-button {
    background-color: #00FF41;
    color: #1A1A1A;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.product-button:hover {
    background-color: #00E63A;
    transform: translateY(-2px);
}

/* Analytics Preview */
.analytics-section {
    padding: 4rem 0;
    text-align: center;
}

.section-subtitle {
    color: #E5E7EB;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.analytics-preview {
    margin-top: 2rem;
}

/* Why Choose Us */
.why-choose-section {
    padding: 4rem 0;
    text-align: center;
    background-color: #1A1A1A;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-item {
    background-color: #2B2B2B;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #3A3A3A;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    border-color: #00FF41;
    transform: translateY(-5px);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1.5rem;
    background-color: #1A1A1A;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon svg {
    width: 24px;
    height: 24px;
}

.benefit-item h3 {
    color: #00FF41;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.benefit-item p {
    color: #E5E7EB;
    line-height: 1.6;
}

/* Contacts Section */
.contacts-section {
    padding: 4rem 0;
    text-align: center;
}

.contact-form-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contact-form-container p {
    color: #E5E7EB;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-button {
    background-color: #00FF41;
    color: #1A1A1A;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-button:hover {
    background-color: #00E63A;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background-color: #2B2B2B;
    padding: 3rem 0 1rem;
    border-top: 1px solid #3A3A3A;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.footer-section h4 {
    color: #00FF41;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section p {
    color: #B3B3B3;
    line-height: 1.6;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #B3B3B3;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #00FF41;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #3A3A3A;
    color: #B3B3B3;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
    background-color: #2B2B2B;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    position: relative;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.close {
    color: #B3B3B3;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    color: #00FF41;
}

.modal h2 {
    color: #00FF41;
    margin: 0;
    background: none;
    -webkit-text-fill-color: #00FF41;
    text-align: left;
    font-size: 1.5rem;
}

.order-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #E5E7EB;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    background-color: #1A1A1A;
    border: 1px solid #3A3A3A;
    border-radius: 8px;
    color: #E5E7EB;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00FF41;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-button {
    background-color: #00FF41;
    color: #1A1A1A;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.submit-button:hover {
    background-color: #00E63A;
    transform: translateY(-2px);
}

/* Common Styles */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-image {
        height: 250px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .content-split {
        flex-direction: column;
        text-align: center;
    }
    
    .content-split.reverse {
        flex-direction: column;
    }
    
    .text-content h2 {
        text-align: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .header .container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .page-nav {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .hero-image {
        height: 200px;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .feature-card,
    .product-card,
    .benefit-item {
        padding: 1.5rem;
    }
    
    .container {
        padding: 0 1rem;
    }
}