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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 0.5em;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1em;
    line-height: 1.5;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

/* Header */
.header {
    background: linear-gradient(135deg, #2D2D2D 0%, #1a1a1a 100%);
    color: white;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.logo-section {
    display: flex;
    align-items: center;
    gap: 16px;
}

.logo {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

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

.brand-name a {
    color: #0CFFE0;
}

.brand-name a:hover {
    color: #fff;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #2D2D2D 0%, #1a1a1a 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #0CFFE0;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: #fff;
}

.feature-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

/* Sections */
.section {
    padding: 80px 0;
    text-align: center;
}

.section:nth-child(even) {
    background-color: #fff;
}

.section-title {
    text-align: center;
    color: #2D2D2D;
    margin-bottom: 60px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #0CFFE0, #00B8CC);
    border-radius: 2px;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    text-align: left;
}

.about-text {
    font-size: 1.1rem;
    color: #555;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Services Overview */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.service-card {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: #0CFFE0;
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(12, 255, 224, 0.15);
}

.service-icon {
    margin-bottom: 20px;
}

.service-card h3 {
    color: #2D2D2D;
    margin-bottom: 15px;
}

.service-card p {
    color: #666;
    margin-bottom: 0;
}

/* Training Courses */
.courses-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    text-align: left;
}

.courses-text h3 {
    color: #2D2D2D;
    margin-bottom: 20px;
}

.courses-text p {
    color: #555;
    margin-bottom: 30px;
}

.courses-features {
    list-style: none;
    padding: 0;
}

.courses-features li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    color: #555;
}

.courses-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #0CFFE0;
    font-weight: bold;
}

/* Gaming Sessions */
.gaming-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    text-align: left;
}

.gaming-text h3 {
    color: #2D2D2D;
    margin-bottom: 20px;
}

.gaming-text p {
    color: #555;
    margin-bottom: 30px;
}

.gaming-stats {
    display: flex;
    gap: 30px;
}

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

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #0CFFE0;
}

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

/* Esports Section */
.esports-content {
    text-align: center;
}

.esports-text {
    margin-bottom: 50px;
}

.esports-text h3 {
    color: #2D2D2D;
    margin-bottom: 20px;
}

.esports-text p {
    color: #555;
    max-width: 600px;
    margin: 0 auto;
}

.esports-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.esports-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
}

.esports-icon {
    margin-bottom: 10px;
}

.esports-feature span {
    color: #555;
    font-weight: 500;
}

/* Products */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.product-card.featured {
    border-color: #0CFFE0;
    transform: scale(1.05);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(12, 255, 224, 0.15);
}

.product-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.product-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #0CFFE0;
    color: #2D2D2D;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.product-card h3 {
    color: #2D2D2D;
    margin-bottom: 15px;
}

.product-price {
    font-size: 2rem;
    font-weight: 700;
    color: #0CFFE0;
    margin-bottom: 20px;
}

.product-description {
    color: #666;
    margin-bottom: 30px;
}

.product-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.product-features li {
    padding: 8px 0;
    color: #555;
    border-bottom: 1px solid #eee;
}

.product-features li:last-child {
    border-bottom: none;
}

.product-button {
    display: inline-block;
    background: linear-gradient(135deg, #0CFFE0, #00B8CC);
    color: #2D2D2D;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.product-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(12, 255, 224, 0.3);
}

/* Safety Section */
.safety-content {
    max-width: 800px;
    margin: 0 auto;
}

.safety-warning {
    background: #fff3cd;
    border: 2px solid #ffc107;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 50px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    text-align: left;
}

.warning-icon {
    flex-shrink: 0;
}

.warning-content h3 {
    color: #856404;
    margin-bottom: 15px;
}

.warning-content p {
    color: #856404;
    margin: 0;
}

.safety-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

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

.safety-icon {
    margin-bottom: 20px;
}

.safety-item h4 {
    color: #2D2D2D;
    margin-bottom: 15px;
}

.safety-item p {
    color: #666;
    margin: 0;
}

/* Hygiene Section */
.hygiene-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: flex-start;
    text-align: left;
}

.hygiene-text h3 {
    color: #2D2D2D;
    margin-bottom: 20px;
}

.hygiene-text p {
    color: #555;
}

.hygiene-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.hygiene-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-number {
    background: #0CFFE0;
    color: #2D2D2D;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.hygiene-step h4 {
    color: #2D2D2D;
    margin-bottom: 10px;
}

.hygiene-step p {
    color: #666;
    margin: 0;
}

/* Contacts */
.contacts {
    text-align: left;
}

.contacts-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 30px;
}

.contact-icon {
    flex-shrink: 0;
    margin-top: 5px;
}

.contact-details h4 {
    color: #2D2D2D;
    margin-bottom: 10px;
}

.contact-details a {
    color: #0CFFE0;
    font-weight: 500;
}

.contact-details a:hover {
    color: #2D2D2D;
}

.contact-details address {
    color: #666;
    font-style: normal;
    line-height: 1.4;
}

/* Image Placeholders */
.image-placeholder, .map-placeholder {
    background: linear-gradient(135deg, #e9ecef, #f8f9fa);
    border: 2px dashed #0CFFE0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    color: #666;
    font-size: 1.1rem;
    font-weight: 500;
    text-align: center;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2D2D2D 0%, #1a1a1a 100%);
    color: white;
    padding: 60px 0 20px;
    text-align: left;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-brand {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0CFFE0;
}

.footer-description {
    color: #ccc;
    margin: 0;
}

.footer-links-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.footer-links-column h4 {
    color: #0CFFE0;
    margin-bottom: 15px;
    font-size: 1rem;
}

.footer-section h4 {
    color: #0CFFE0;
    margin-bottom: 20px;
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ccc;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #0CFFE0;
}

.footer-contact p {
    margin-bottom: 10px;
}

.footer-contact a {
    color: #0CFFE0;
}

.footer-contact a:hover {
    color: white;
}

.footer-contact address {
    color: #ccc;
    font-style: normal;
    line-height: 1.4;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    color: #999;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .about-content,
    .courses-content,
    .gaming-content,
    .hygiene-content,
    .contacts-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .gaming-content .gaming-image {
        order: -1;
    }
    
    .gaming-stats {
        justify-content: center;
        gap: 20px;
    }
    
    .esports-features {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .product-card.featured {
        transform: none;
    }
    
    .product-card.featured:hover {
        transform: translateY(-5px);
    }
    
    .safety-warning {
        flex-direction: column;
        text-align: center;
    }
    
    .hygiene-steps {
        gap: 20px;
    }
    
    .hygiene-step {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-links-section {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 60px 0;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .service-card,
    .product-card {
        padding: 30px;
    }
    
    .safety-warning {
        padding: 20px;
    }
}