/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #1a1a2e;
}

.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: 3rem;
    font-weight: 800;
}

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

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

h4 {
    font-size: 1.4rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

a {
    color: #00ff88;
    text-decoration: none;
}

a:hover {
    color: #00cc6a;
}

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

.cta-button.primary {
    background: linear-gradient(135deg, #00ff88 0%, #00cc6a 100%);
    color: #1a1a2e;
}

.cta-button.primary:hover {
    background: linear-gradient(135deg, #00cc6a 0%, #009954 100%);
    transform: translateY(-2px);
}

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

.cta-button.secondary:hover {
    background: #00ff88;
    color: #1a1a2e;
}

.cta-button.large {
    padding: 1.25rem 2.5rem;
    font-size: 1.25rem;
}

.button-icon {
    width: 20px;
    height: 20px;
}

/* Sections */
section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #00ff88 0%, #9d4edd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(157, 78, 221, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(0, 255, 136, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    justify-content: center;
}

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

.brand-name {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #00ff88 0%, #9d4edd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2.8rem;
}

.hero-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: #a0a0b8;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-image-placeholder {
    margin-top: 3rem;
}

/* Modern Image Styling */
.hero-image {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img {
    width: 100%;
    max-width: 800px;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.1);
    border: 2px solid rgba(0, 255, 136, 0.2);
}

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

.about-img {
    width: 100%;
    max-width: 500px;
    height: 350px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 15px 30px rgba(157, 78, 221, 0.1);
    border: 1px solid rgba(157, 78, 221, 0.2);
}

.zone-image {
    overflow: hidden;
    border-radius: 16px 16px 0 0;
}

.zone-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.zone-card:hover .zone-img {
    transform: scale(1.05);
}

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

.events-img {
    width: 100%;
    max-width: 500px;
    height: 350px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 15px 30px rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.2);
}

.map-container {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.map-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    filter: grayscale(20%) brightness(0.8);
}

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

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(0, 255, 136, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 255, 136, 0.1);
}

.feature-icon {
    width: 40px;
    height: 40px;
    filter: brightness(0) saturate(100%) invert(70%) sepia(91%) saturate(3058%) hue-rotate(130deg) brightness(119%) contrast(106%);
}

.feature-item h3 {
    margin-bottom: 0.25rem;
    font-size: 1.2rem;
}

.feature-item p {
    margin-bottom: 0;
    color: #a0a0b8;
    font-size: 0.9rem;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    background: #2a2a4e;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid #3a3a6e;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: #00ff88;
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.1);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
    filter: brightness(0) saturate(100%) invert(70%) sepia(91%) saturate(3058%) hue-rotate(130deg) brightness(119%) contrast(106%);
}

/* Zones Section */
.zones {
    background: #16213e;
}

.zones-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.zone-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    background: #2a2a4e;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #3a3a6e;
}

.zone-info {
    padding: 2rem;
}

.zone-features {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.zone-tag {
    background: rgba(157, 78, 221, 0.2);
    color: #9d4edd;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.pricing-card {
    background: #2a2a4e;
    border-radius: 16px;
    border: 1px solid #3a3a6e;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.1);
}

.pricing-card.popular {
    border-color: #00ff88;
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.1);
}

.pricing-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #00ff88;
    color: #1a1a2e;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-header {
    padding: 2rem 2rem 1rem;
    text-align: center;
    border-bottom: 1px solid #3a3a6e;
}

.pricing-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
    filter: brightness(0) saturate(100%) invert(70%) sepia(91%) saturate(3058%) hue-rotate(130deg) brightness(119%) contrast(106%);
}

.pricing-body {
    padding: 2rem;
    text-align: center;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #00ff88;
    margin-bottom: 1.5rem;
}

.price span {
    font-size: 1rem;
    color: #a0a0b8;
    font-weight: 400;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.pricing-features li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00ff88;
    font-weight: 600;
}

.pricing-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #00ff88 0%, #00cc6a 100%);
    color: #1a1a2e;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pricing-button:hover {
    background: linear-gradient(135deg, #00cc6a 0%, #009954 100%);
}

/* Events Section */
.events {
    background: #16213e;
}

.events-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.tournament-schedule {
    margin: 2rem 0;
}

.tournament-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(157, 78, 221, 0.1);
    border-radius: 8px;
    margin-bottom: 1rem;
}

.tournament-icon {
    width: 30px;
    height: 30px;
    filter: brightness(0) saturate(100%) invert(59%) sepia(84%) saturate(4519%) hue-rotate(260deg) brightness(87%) contrast(87%);
}

.tournament-item h4 {
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.tournament-item p {
    margin-bottom: 0;
    color: #a0a0b8;
    font-size: 0.9rem;
}

/* Booking Section */
.booking-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.schedule-card {
    background: #2a2a4e;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid #3a3a6e;
}

.schedule-grid {
    margin-top: 1.5rem;
}

.schedule-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #3a3a6e;
}

.schedule-item:last-child {
    border-bottom: none;
}

.day {
    font-weight: 600;
    color: #00ff88;
}

.time {
    color: #a0a0b8;
}

.booking-steps h3 {
    margin-bottom: 1.5rem;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.step-number {
    background: linear-gradient(135deg, #00ff88 0%, #00cc6a 100%);
    color: #1a1a2e;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
}

.step-text h4 {
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.step-text p {
    margin-bottom: 0;
    color: #a0a0b8;
    font-size: 0.9rem;
}

.booking-cta {
    text-align: center;
}

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

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

.review-card {
    background: #2a2a4e;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid #3a3a6e;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    background: rgba(0, 255, 136, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(0, 255, 136, 0.2);
}

.avatar-icon {
    width: 24px;
    height: 24px;
    filter: brightness(0) saturate(100%) invert(70%) sepia(91%) saturate(3058%) hue-rotate(130deg) brightness(119%) contrast(106%);
}

.reviewer-info h4 {
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.rating {
    color: #ffd700;
    font-size: 0.9rem;
}

.review-text {
    color: #a0a0b8;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 0;
}

/* Contacts Section */
.contacts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-card {
    background: #2a2a4e;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid #3a3a6e;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-3px);
    border-color: #00ff88;
}

.contact-icon {
    margin-bottom: 1rem;
}

.contact-icon .icon {
    width: 50px;
    height: 50px;
    filter: brightness(0) saturate(100%) invert(70%) sepia(91%) saturate(3058%) hue-rotate(130deg) brightness(119%) contrast(106%);
}

.contact-info h3 {
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.contact-link {
    color: #00ff88;
    font-weight: 600;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.5rem;
}

.contact-info p {
    color: #a0a0b8;
    margin-bottom: 0;
    font-size: 0.9rem;
}

.map-placeholder {
    margin-top: 2rem;
}

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

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

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

.brand-name-small {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #00ff88 0%, #9d4edd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-info {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

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

.footer-section p {
    color: #a0a0b8;
    margin-bottom: 0.5rem;
    line-height: 1.5;
    font-size: 0.9rem;
}

.footer-section a {
    color: #a0a0b8;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #00ff88;
}

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

.footer-bottom p {
    color: #6a6a8e;
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .brand-name {
        font-size: 2.8rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .about-content,
    .events-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .zone-card {
        grid-template-columns: 1fr;
    }

    .booking-info {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    section {
        padding: 3rem 0;
    }
    
    .container {
        padding: 0 20px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .brand-name {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .logo-container {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .pricing-grid,
    .services-grid,
    .reviews-grid,
    .contacts-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        gap: 1rem;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    .zones-grid {
        gap: 2rem;
    }
    
    .hero-img,
    .about-img,
    .events-img {
        height: 250px;
    }
    
    .zone-img {
        height: 200px;
    }
    
    .map-img {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 1.75rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .brand-name {
        font-size: 1.75rem;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .price {
        font-size: 2rem;
    }
    
    .service-card,
    .review-card,
    .contact-card,
    .pricing-card {
        padding: 1.5rem;
    }
    
    .zone-info,
    .schedule-card {
        padding: 1.5rem;
    }
    
    .zone-image-placeholder {
        padding: 1.5rem;
    }
    
    .hero-img,
    .about-img,
    .events-img {
        height: 200px;
        border-radius: 12px;
    }
    
    .zone-img {
        height: 180px;
    }
    
    .map-img {
        height: 200px;
    }
}