/* 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: #1a1a1a;
}

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

/* Typography */
h1, h2, h3, h4 {
    margin-bottom: 1rem;
    font-weight: 600;
}

h1 {
    font-size: 3rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

h3 {
    font-size: 1.5rem;
}

.highlight {
    color: #00ff41;
}

/* Buttons */
.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, #00ff41, #00d436);
    color: #1a1a1a;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #00d436, #00b82f);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #00ff41;
    border: 2px solid #00ff41;
}

.btn-secondary:hover {
    background: #00ff41;
    color: #1a1a1a;
}

.btn-outline {
    background: transparent;
    color: #ffffff;
    border: 2px solid #333;
}

.btn-outline:hover {
    border-color: #00ff41;
    color: #00ff41;
}

.btn.large {
    padding: 16px 32px;
    font-size: 1.2rem;
}

/* Header */
.header {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #333;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    filter: drop-shadow(0 0 10px rgba(0, 255, 65, 0.3));
}

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

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-bottom: 1px solid #333;
}

.hero .container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
    min-height: 500px;
}

.hero-content h1 {
    margin-bottom: 1.5rem;
    font-size: 3.2rem;
}

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

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    border: 2px solid #333;
    box-shadow: 0 8px 32px rgba(0, 255, 65, 0.1);
}

.content-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    border: 2px solid #333;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.placeholder-image {
    background: #333;
    color: #666;
    padding: 100px 20px;
    text-align: center;
    border-radius: 12px;
    border: 2px dashed #444;
    font-size: 1.1rem;
}

/* Sections */
section {
    padding: 80px 0;
}

.centered-section {
    text-align: center;
}

.centered-content {
    text-align: center;
}

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

.how-it-works {
    background: #222;
}

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

.step {
    text-align: center;
    padding: 30px 20px;
    background: #2a2a2a;
    border-radius: 12px;
    border: 1px solid #333;
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: #00ff41;
    margin-bottom: 1rem;
}

.step h3 {
    margin-bottom: 1rem;
    color: #ffffff;
}

.step p {
    color: #cccccc;
}

/* Content Split Sections */
.content-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.content-split.reverse {
    direction: rtl;
}

.content-split.reverse > * {
    direction: ltr;
}

.for-players {
    background: #1a1a1a;
}

.for-coaches {
    background: #222;
}

.feature-list {
    list-style: none;
    margin-bottom: 2rem;
}

.feature-list li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    color: #cccccc;
}

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

/* Services */
.services {
    background: #1a1a1a;
}

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

.service-card {
    background: #2a2a2a;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #333;
    text-align: center;
}

.service-card h3 {
    color: #00ff41;
    margin-bottom: 1rem;
}

.service-card p {
    color: #cccccc;
    margin-bottom: 1.5rem;
}

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

/* Features Grid */
.why-choose {
    background: #222;
}

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

.feature-card {
    background: #2a2a2a;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #333;
    text-align: center;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: #00ff41;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #cccccc;
}

/* Testimonials */
.testimonials {
    background: #1a1a1a;
}

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

.testimonial {
    background: #2a2a2a;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #333;
    border-left: 4px solid #00ff41;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 1rem;
    color: #cccccc;
}

.testimonial-author {
    color: #00ff41;
    font-weight: 600;
}

/* Statistics */
.statistics {
    background: #222;
}

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

.stat {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #00ff41;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: #cccccc;
}

/* CTA */
.cta {
    background: linear-gradient(135deg, #00ff41, #00d436);
    color: #1a1a1a;
    text-align: center;
}

.cta h2 {
    color: #1a1a1a;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #333;
}

/* Contacts */
.contacts {
    background: #1a1a1a;
}

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

.contact-item {
    text-align: center;
    padding: 30px;
    background: #2a2a2a;
    border-radius: 12px;
    border: 1px solid #333;
}

.contact-item h3 {
    color: #00ff41;
    margin-bottom: 1rem;
}

.contact-item p {
    color: #cccccc;
    font-size: 1.1rem;
}

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

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

.footer-section:first-child {
    max-width: 300px;
}

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

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-section ul li a:hover {
    color: #00ff41;
}

.footer-section p {
    color: #cccccc;
    margin-top: 1rem;
    line-height: 1.5;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    color: #666;
    font-size: 0.9rem;
}

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

.modal-content {
    background-color: #2a2a2a;
    margin: 5% auto;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid #333;
    width: 90%;
    max-width: 500px;
    position: relative;
}

.close {
    color: #666;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 20px;
}

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

.order-form {
    margin-top: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #00ff41;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #333;
    border-radius: 8px;
    background: #1a1a1a;
    color: #ffffff;
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00ff41;
    box-shadow: 0 0 0 2px rgba(0, 255, 65, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
        min-height: auto;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-img {
        height: 250px;
    }
    
    .content-split {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .content-split.reverse {
        direction: ltr;
    }
    
    .content-img {
        height: 200px;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
        text-align: center;
    }
    
    .footer-section:first-child {
        grid-column: 1 / -1;
        max-width: none;
    }
    
    .modal-content {
        margin: 10% auto;
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    section {
        padding: 60px 0;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}