* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    background-color: #1a1a1a;
    color: #e0e0e0;
    line-height: 1.6;
    font-size: 16px;
}

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

/* Header */
.header {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 20, 147, 0.2);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

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

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

.logo-section a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
}

.brand-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
}

.cta-button, .back-link {
    background: linear-gradient(45deg, #ff1493, #00ffff);
    color: #000;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
}

.cta-button:hover, .back-link:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 20, 147, 0.3);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 140px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 48%, rgba(255, 20, 147, 0.1) 50%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(0, 255, 255, 0.1) 50%, transparent 52%);
    background-size: 60px 60px;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ff1493, #00ffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #b0b0b0;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-top: 4rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
    min-width: 120px;
}

.stat-number {
    display: block;
    font-size: 2.8rem;
    font-weight: 800;
    color: #ff1493;
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 0.875rem;
    color: #808080;
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #ffffff;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

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

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

.about-text p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #c0c0c0;
}

.about-img, .service-img, .league-img, .equipment-img, .booking-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.about-image {
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
}

.placeholder-image {
    background: linear-gradient(45deg, #2a2a2a, #3a3a3a);
    border: 2px dashed #555;
    border-radius: 8px;
    padding: 60px 20px;
    text-align: center;
    color: #888;
    font-style: italic;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.advantage-card {
    background: #2a2a2a;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(255, 20, 147, 0.2);
    transition: all 0.3s ease;
}

.advantage-card:hover {
    border-color: rgba(255, 20, 147, 0.5);
    transform: translateY(-4px);
}

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

.advantage-card p {
    color: #b0b0b0;
}

/* Services Section */
.services {
    background: #222;
}

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

.service-card {
    background: #2a2a2a;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(0, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: rgba(0, 255, 255, 0.5);
    transform: translateY(-4px);
}

.service-image {
    height: 180px;
    overflow: hidden;
}

.service-card h3,
.service-card p,
.service-price {
    padding: 0 20px;
}

.service-card h3 {
    padding-top: 20px;
    margin-bottom: 10px;
}

.service-card p {
    color: #b0b0b0;
    margin-bottom: 20px;
}

.service-price {
    font-size: 1.2rem;
    font-weight: 600;
    color: #00ffff;
    margin-bottom: 20px;
}

.service-button {
    background: linear-gradient(45deg, #ff1493, #00ffff);
    color: #000;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    width: calc(100% - 40px);
    margin: 0 20px 20px;
    transition: all 0.3s ease;
}

.service-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 20, 147, 0.3);
}

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

.league-image {
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
}

.league-info ul {
    list-style: none;
    padding: 0;
}

.league-info li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: #c0c0c0;
}

.league-info li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #ff1493;
    font-size: 12px;
}

/* Equipment Section */
.equipment {
    background: #222;
}

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

.equipment-card {
    background: #2a2a2a;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.equipment-card:hover {
    border-color: rgba(0, 255, 255, 0.5);
    transform: translateY(-4px);
}

.equipment-image {
    height: 200px;
    overflow: hidden;
}

.equipment-card h3,
.equipment-card p {
    padding: 0 20px;
}

.equipment-card h3 {
    padding-top: 20px;
}

.equipment-card p {
    color: #b0b0b0;
    padding-bottom: 20px;
}

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

.booking-preview {
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
}

.booking-info ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.booking-info li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #c0c0c0;
}

.booking-info li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00ffff;
    font-weight: bold;
}

.booking-button {
    background: linear-gradient(45deg, #ff1493, #00ffff);
    color: #000;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.booking-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(255, 20, 147, 0.4);
}

/* Reviews Section */
.reviews {
    background: #222;
}

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

.review-card {
    background: #2a2a2a;
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid #ff1493;
}

.review-card p {
    color: #e0e0e0;
    font-style: italic;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.reviewer {
    color: #00ffff;
    font-weight: 600;
}

/* Contacts Section */
.contacts-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    text-align: left;
}

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

.contact-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(255, 20, 147, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-details h3 {
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.contact-details p {
    color: #b0b0b0;
    margin: 0;
}

.contact-form {
    background: #2a2a2a;
    padding: 40px;
    border-radius: 12px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 12px 16px;
    margin-bottom: 20px;
    background: #1a1a1a;
    border: 1px solid #444;
    border-radius: 8px;
    color: #e0e0e0;
    font-size: 16px;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: #ff1493;
}

.submit-button {
    background: linear-gradient(45deg, #ff1493, #00ffff);
    color: #000;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    font-size: 16px;
    transition: all 0.3s ease;
}

.submit-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 20, 147, 0.3);
}

/* Footer */
.footer {
    background: #0f0f0f;
    border-top: 1px solid rgba(255, 20, 147, 0.2);
    padding: 60px 0 20px;
}

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

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

.footer-section h4 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

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

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

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

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

.footer-section p {
    color: #b0b0b0;
    margin-bottom: 8px;
}

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

/* 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: 10% auto;
    padding: 40px;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    position: relative;
}

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

.close:hover {
    color: #ff1493;
}

#orderForm input,
#orderForm textarea,
#orderForm select {
    width: 100%;
    padding: 12px 16px;
    margin-bottom: 20px;
    background: #1a1a1a;
    border: 1px solid #444;
    border-radius: 8px;
    color: #e0e0e0;
    font-size: 16px;
}

#orderForm input:focus,
#orderForm textarea:focus,
#orderForm select:focus {
    outline: none;
    border-color: #ff1493;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero-stats {
        gap: 40px;
    }
    
    .about-content,
    .leagues-content,
    .booking-content,
    .contacts-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    section {
        padding: 60px 0;
    }
    
    h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 120px 0 80px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .modal-content {
        margin: 20% auto;
        padding: 20px;
    }
}