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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #2A2A2A;
    background-color: #f8f9fa;
}

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

/* Colors */
:root {
    --electric-blue: #0066FF;
    --neon-turquoise: #00D4AA;
    --graphite: #2A2A2A;
    --light-gray: #f8f9fa;
    --white: #ffffff;
}

/* Header */
.header {
    background: var(--white);
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.brand-name h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--electric-blue);
    margin: 0;
    line-height: 1.2;
}

.brand-name span {
    font-size: 1rem;
    color: var(--neon-turquoise);
    font-weight: 500;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--electric-blue), var(--neon-turquoise));
    color: var(--white);
    padding: 80px 0;
}

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

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

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
}

.feature-icon {
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

.hero-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.cta-button {
    background: var(--white);
    color: var(--electric-blue);
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* About Section */
.about {
    padding: 80px 0;
    background: var(--white);
}

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

.about h2 {
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--graphite);
}

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

.about-item {
    text-align: center;
    padding: 30px;
    background: var(--light-gray);
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.about-item:hover {
    transform: translateY(-5px);
}

.about-item svg {
    margin-bottom: 20px;
}

.about-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--graphite);
}

.about-item p {
    color: #666;
    line-height: 1.6;
}

/* Gaming Zones */
.zones {
    padding: 80px 0;
    background: var(--light-gray);
}

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

.zones h2 {
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--graphite);
}

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

.zone-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.zone-card:hover {
    transform: translateY(-5px);
}

.zone-svg-container {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--light-gray), #f0f0f0);
    border-radius: 12px 12px 0 0;
}

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

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

.zone-card h3 {
    padding: 20px 20px 10px;
    font-size: 1.5rem;
    color: var(--graphite);
}

.zone-card p {
    padding: 0 20px;
    color: #666;
    line-height: 1.6;
}

.zone-price {
    padding: 20px;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--neon-turquoise);
}

/* Consoles */
.consoles {
    padding: 80px 0;
    background: var(--white);
}

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

.consoles h2 {
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--graphite);
}

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

.console-item {
    text-align: center;
    padding: 30px;
    background: var(--light-gray);
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.console-item:hover {
    transform: translateY(-5px);
}

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

.console-item h3 {
    font-size: 1.3rem;
    color: var(--graphite);
    font-weight: 600;
}

/* Services */
.services {
    padding: 80px 0;
    background: var(--light-gray);
}

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

.services h2 {
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--graphite);
}

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

.service-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--graphite);
}

.service-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--neon-turquoise);
    margin-bottom: 25px;
}

.service-button {
    background: var(--electric-blue);
    color: var(--white);
    padding: 12px 25px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.service-button:hover {
    background: #0056e0;
    transform: translateY(-2px);
}

/* Achievements */
.achievements {
    padding: 80px 0;
    background: var(--white);
}

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

.achievements h2 {
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--graphite);
}

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

.achievement-info h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--electric-blue);
}

.achievement-info p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.7;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: var(--light-gray);
    border-radius: 8px;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--neon-turquoise);
}

.stat-label {
    display: block;
    color: var(--graphite);
    font-size: 0.9rem;
    font-weight: 500;
}

.achievement-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.booking-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Booking */
.booking {
    padding: 80px 0;
    background: var(--light-gray);
}

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

.booking h2 {
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--graphite);
}

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

.booking-info h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--electric-blue);
}

.booking-info p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.7;
}

.booking-info ul {
    list-style: none;
    margin-bottom: 40px;
}

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

.booking-info li::before {
    content: "✓";
    color: var(--neon-turquoise);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Gallery */
.gallery {
    padding: 80px 0;
    background: var(--white);
}

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

.gallery h2 {
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--graphite);
}

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

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

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

/* Contacts */
.contacts {
    padding: 80px 0;
    background: var(--light-gray);
}

.contacts h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--graphite);
}

.contacts-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

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

.contact-item svg {
    flex-shrink: 0;
    margin-top: 5px;
}

.contact-item h3 {
    font-size: 1.2rem;
    color: var(--graphite);
    margin-bottom: 5px;
}

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

.contact-hours {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-hours h3 {
    font-size: 1.5rem;
    color: var(--graphite);
    margin-bottom: 20px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

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

/* Footer */
.footer {
    background: var(--graphite);
    color: var(--white);
    padding: 50px 0 20px;
}

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

.footer-brand .logo-section {
    margin-bottom: 20px;
}

.footer-brand .brand-name {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.brand-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--electric-blue);
}

.brand-subtitle {
    font-size: 0.9rem;
    color: var(--neon-turquoise);
}

.footer-brand p {
    color: #ccc;
    font-size: 0.95rem;
}

.footer-links {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--neon-turquoise);
}

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

.footer-column li {
    margin-bottom: 10px;
}

.footer-column a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--neon-turquoise);
}

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

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

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

.modal-content {
    background-color: var(--white);
    margin: 5% auto;
    padding: 30px;
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    position: relative;
    max-height: 80vh;
    overflow-y: auto;
}

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

.close:hover {
    color: var(--graphite);
}

.booking-form h2 {
    color: var(--graphite);
    margin-bottom: 30px;
    text-align: center;
}

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

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: var(--graphite);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--electric-blue);
}

.form-group textarea {
    resize: vertical;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-features {
        align-items: center;
    }

    .hero-content h2 {
        font-size: 2.2rem;
    }
    
    .hero-img {
        height: 300px;
    }

    .achievements-content,
    .booking-content,
    .contacts-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .footer-links {
        flex-direction: column;
        gap: 40px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .zones-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .consoles-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .modal-content {
        margin: 10% auto;
        width: 95%;
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .hero-content h2 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 1rem;
    }
    
    .hero-img {
        height: 250px;
    }

    .about h2,
    .zones h2,
    .consoles h2,
    .services h2,
    .achievements h2,
    .booking h2,
    .gallery h2,
    .contacts h2 {
        font-size: 2rem;
    }

    .consoles-grid {
        grid-template-columns: 1fr;
    }
}