/* 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: #0a0a0a;
}

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

/* Typography */
h1, h2, h3, h4 {
    line-height: 1.2;
    font-weight: 700;
}

h2.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #00ff88;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

p {
    line-height: 1.5;
}

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

a:hover {
    color: #00d4ff;
}

/* Header */
.header {
    background-color: #1a1a1a;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 2px solid #00ff88;
}

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

.logo-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

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

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

.header-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #00ff88;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
    border: 2px solid #00ff88;
    border-radius: 8px;
    background-color: rgba(0, 255, 136, 0.1);
}

.header-phone:hover {
    background-color: rgba(0, 255, 136, 0.2);
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.3);
}

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

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

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

.hero-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #cccccc;
}

.hero-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #00ff88;
    font-weight: 600;
}

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

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #00ff88, #00d4ff);
    color: #000000;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.3);
}

.cta-button:hover {
    box-shadow: 0 6px 20px rgba(0, 255, 136, 0.5);
    transform: translateY(-2px);
    color: #000000;
}

.cta-button.large {
    padding: 1.5rem 3rem;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
}

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

/* Image Placeholders */
.hero-image-photo,
.about-image-photo,
.zone-image-photo,
.product-image-photo,
.contact-map-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.hero-image-photo {
    min-height: 400px;
    box-shadow: 0 8px 30px rgba(0, 255, 136, 0.2);
}

.about-image-photo {
    min-height: 300px;
    box-shadow: 0 6px 25px rgba(0, 212, 255, 0.15);
}

.zone-image-photo {
    min-height: 200px;
    border-radius: 12px 12px 0 0;
}

.product-image-photo {
    min-height: 180px;
    border-radius: 12px 12px 0 0;
}

.contact-map-photo {
    min-height: 300px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.zone-card:hover .zone-image-photo,
.product-card:hover .product-image-photo {
    transform: scale(1.05);
}

.hero-image {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.zone-image,
.product-image {
    position: relative;
    overflow: hidden;
}

.contact-map {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

/* About Section */
.about {
    padding: 5rem 0;
    background-color: #1a1a1a;
}

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

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #cccccc;
}

.stats {
    display: flex;
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #ff0080;
    text-shadow: 0 0 15px rgba(255, 0, 128, 0.3);
}

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

/* Gaming Zones Section */
.gaming-zones {
    padding: 5rem 0;
    background-color: #0a0a0a;
}

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

.zone-card {
    background-color: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #333;
}

.zone-card:hover {
    border-color: #00ff88;
    box-shadow: 0 8px 25px rgba(0, 255, 136, 0.15);
}

.zone-image .image-placeholder {
    border-radius: 0;
    border: none;
    min-height: 200px;
}

.zone-title {
    font-size: 1.5rem;
    color: #00ff88;
    margin: 1.5rem 1.5rem 1rem 1.5rem;
}

.zone-description {
    color: #cccccc;
    margin: 0 1.5rem 1.5rem 1.5rem;
}

.zone-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 0 1.5rem 1.5rem 1.5rem;
}

.zone-feature {
    background-color: #00ff88;
    color: #000000;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Equipment Section */
.equipment {
    padding: 5rem 0;
    background-color: #1a1a1a;
}

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

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

.equipment-item:hover {
    border-color: #00d4ff;
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.15);
}

.equipment-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1.5rem;
}

.equipment-title {
    font-size: 1.3rem;
    color: #00d4ff;
    margin-bottom: 1rem;
}

.equipment-description {
    color: #cccccc;
}

/* Pricing Section */
.pricing {
    padding: 5rem 0;
    background-color: #0a0a0a;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.price-card {
    background-color: #1a1a1a;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    border: 2px solid #333;
    position: relative;
}

.price-card.featured {
    border-color: #ff0080;
    box-shadow: 0 8px 30px rgba(255, 0, 128, 0.2);
}

.price-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, #ff0080, #ff4081);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.price-title {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

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

.price-period {
    font-size: 1rem;
    color: #888;
    font-weight: 400;
}

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

.price-features li {
    padding: 0.5rem 0;
    color: #cccccc;
    border-bottom: 1px solid #333;
}

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

.price-button {
    display: block;
    background-color: #00ff88;
    color: #000000;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    width: 100%;
}

.price-button:hover {
    background-color: #00d4ff;
    color: #000000;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

/* Products Section */
.products {
    padding: 5rem 0;
    background-color: #1a1a1a;
}

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

.product-card {
    background-color: #2a2a2a;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #333;
}

.product-card:hover {
    border-color: #ff0080;
    box-shadow: 0 8px 25px rgba(255, 0, 128, 0.15);
}

.product-image .image-placeholder {
    border-radius: 0;
    border: none;
    min-height: 180px;
}

.product-title {
    font-size: 1.3rem;
    color: #ff0080;
    margin: 1.5rem 1.5rem 1rem 1.5rem;
}

.product-description {
    color: #cccccc;
    margin: 0 1.5rem 1rem 1.5rem;
    font-size: 0.95rem;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #00ff88;
    margin: 0 1.5rem 1.5rem 1.5rem;
}

.product-button {
    display: block;
    background: linear-gradient(45deg, #ff0080, #ff4081);
    color: #ffffff;
    padding: 1rem;
    text-align: center;
    font-weight: 700;
    text-decoration: none;
}

.product-button:hover {
    background: linear-gradient(45deg, #ff4081, #ff0080);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(255, 0, 128, 0.3);
}

/* Booking Section */
.booking {
    padding: 5rem 0;
    background-color: #0a0a0a;
}

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

.booking-info h3 {
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 2rem;
}

.booking-steps {
    margin-bottom: 2rem;
}

.booking-step {
    display: flex;
    align-items: start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.step-icon {
    width: 32px;
    height: 32px;
    margin-top: 0.5rem;
}

.step-content h4 {
    color: #00ff88;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: #cccccc;
}

.booking-hours {
    background-color: #1a1a1a;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #00d4ff;
}

.booking-hours h4 {
    color: #00d4ff;
    margin-bottom: 1rem;
}

.booking-hours p {
    color: #cccccc;
}

.cta-card {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid #00ff88;
    box-shadow: 0 8px 25px rgba(0, 255, 136, 0.15);
}

.cta-card h3 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.cta-card p {
    color: #cccccc;
    margin-bottom: 2rem;
}

/* Contacts Section */
.contacts {
    padding: 5rem 0;
    background-color: #1a1a1a;
}

.contacts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-item {
    display: flex;
    align-items: start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 32px;
    height: 32px;
    margin-top: 0.5rem;
}

.contact-details h4 {
    color: #00ff88;
    margin-bottom: 0.5rem;
}

.contact-details p,
.contact-details a {
    color: #cccccc;
    font-size: 1.1rem;
}

.map-placeholder {
    min-height: 300px;
}

/* Footer */
.footer {
    background-color: #000000;
    padding: 3rem 0 1rem 0;
    border-top: 2px solid #00ff88;
}

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

.footer-brand h3 {
    color: #00ff88;
    margin: 1rem 0;
}

.footer-brand p {
    color: #888;
}

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

.footer-info h4,
.footer-hours h4 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.footer-info p,
.footer-hours p {
    color: #cccccc;
    margin-bottom: 0.5rem;
}

.footer-links h4 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.footer-links p {
    color: #cccccc;
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .hero .container,
    .about-content,
    .booking-content,
    .contacts-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .zones-grid,
    .equipment-grid,
    .pricing-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .stats {
        justify-content: center;
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .header .container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .header-phone {
        font-size: 1rem;
    }
}