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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #0a0a0a;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2.2rem;
    font-weight: 600;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    color: #cccccc;
}

/* Buttons */
.cta-button {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.cta-button.primary {
    background: linear-gradient(135deg, #00D4FF, #8B5CF6);
    color: #ffffff;
}

.cta-button.primary:hover {
    background: linear-gradient(135deg, #00B8E6, #7C3AED);
    transform: translateY(-2px);
}

.cta-button.secondary {
    background: transparent;
    color: #00D4FF;
    border: 2px solid #00D4FF;
}

.cta-button.secondary:hover {
    background: #00D4FF;
    color: #0a0a0a;
}

/* Section Common Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-header {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
}

.logo-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

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

.brand-name {
    font-size: 2rem;
    font-weight: 700;
    color: #00D4FF;
    margin: 0;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #00D4FF, #8B5CF6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: #cccccc;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* About Section */
.about {
    background: #111111;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Features Section */
.features {
    background: #0a0a0a;
}

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

.feature-card {
    background: #1a1a1a;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #333333;
}

.feature-card:hover {
    border-color: #00D4FF;
    transform: translateY(-5px);
    transition: all 0.3s ease;
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

/* Hardware Section */
.hardware {
    background: #111111;
}

.hardware-specs {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.spec-category h3 {
    color: #00D4FF;
    margin-bottom: 20px;
}

.spec-category ul {
    list-style: none;
}

.spec-category li {
    padding: 8px 0;
    border-bottom: 1px solid #333333;
    color: #cccccc;
}

.spec-category li:before {
    content: "✓ ";
    color: #00D4FF;
    font-weight: bold;
}

/* Training Section */
.training {
    background: #0a0a0a;
}

.training-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.training-program {
    background: #1a1a1a;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #333333;
}

.program-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.feature-tag {
    background: #00D4FF;
    color: #0a0a0a;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Tournaments Section */
.tournaments {
    background: #111111;
}

.tournament-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.tournament-schedule {
    margin-top: 30px;
}

.schedule-item {
    display: grid;
    grid-template-columns: 100px 1fr 80px;
    gap: 20px;
    padding: 15px 0;
    border-bottom: 1px solid #333333;
    align-items: center;
}

.schedule-item .day {
    font-weight: 600;
    color: #00D4FF;
}

.schedule-item .time {
    text-align: right;
    color: #8B5CF6;
    font-weight: 600;
}

/* Community Section */
.community {
    background: #0a0a0a;
}

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

.community-feature {
    text-align: center;
    padding: 30px;
}

.community-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

/* Products Section */
.products {
    background: #111111;
}

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

.product-card {
    background: #1a1a1a;
    border: 2px solid #333333;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    position: relative;
}

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

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

.product-header {
    margin-bottom: 20px;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #00D4FF;
    margin: 10px 0;
}

.price span {
    font-size: 1rem;
    color: #cccccc;
}

.product-features ul {
    list-style: none;
    text-align: left;
    margin: 20px 0;
}

.product-features li {
    padding: 8px 0;
    color: #cccccc;
}

.product-features li:before {
    content: "✓ ";
    color: #00D4FF;
    font-weight: bold;
}

.product-button {
    display: block;
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #00D4FF, #8B5CF6);
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.product-button:hover {
    background: linear-gradient(135deg, #00B8E6, #7C3AED);
    transform: translateY(-2px);
}

/* Contact Section */
.contact {
    background: #0a0a0a;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

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

.contact-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.contact-details h3 {
    color: #00D4FF;
    margin-bottom: 5px;
}

.contact-details a {
    color: #cccccc;
    text-decoration: none;
}

.contact-details a:hover {
    color: #00D4FF;
}

/* Content Images */
.content-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 212, 255, 0.2);
}

/* Team Images */
.team-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.team-image:hover {
    transform: scale(1.05);
}

/* Footer */
.footer {
    background: #111111;
    border-top: 1px solid #333333;
    padding: 40px 0 20px;
}

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

.footer-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

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

.footer-brand-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #00D4FF;
}

.footer-info p {
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.footer-contact {
    text-align: right;
}

.footer-contact a {
    display: block;
    color: #cccccc;
    text-decoration: none;
    margin-bottom: 5px;
}

.footer-contact a:hover {
    color: #00D4FF;
}

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

.footer-bottom p {
    font-size: 0.9rem;
    color: #666666;
}

/* Footer Links */
.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #333333;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .about-grid,
    .contact-grid,
    .tournament-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hardware-specs,
    .training-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .product-card.featured {
        transform: none;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }
    
    .footer-contact {
        text-align: center;
    }
    
    .schedule-item {
        grid-template-columns: 1fr;
        gap: 5px;
        text-align: center;
    }
    
    .schedule-item .time {
        text-align: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .feature-card,
    .training-program {
        padding: 20px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}