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

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

/* Header */
.header {
    background: rgba(26, 26, 58, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(50, 205, 50, 0.2);
}

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

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

.logo-icon {
    width: 60px;
    height: 60px;
}

.brand-text {
    line-height: 1.2;
}

.brand-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: #32cd32;
    margin: 0;
}

.brand-tagline {
    font-size: 0.9rem;
    color: #cccccc;
    margin: 0;
}

.phone-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #32cd32;
    color: #1a1a3a;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.phone-btn:hover {
    background: #28a428;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1a1a3a 0%, #2a2a4a 50%, #1a1a3a 100%);
    padding: 80px 0;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(50, 205, 50, 0.1) 0%, transparent 50%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 30px;
    line-height: 1.5;
}

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

.btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-align: center;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: #32cd32;
    color: #1a1a3a;
}

.btn-primary:hover {
    background: #28a428;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(50, 205, 50, 0.3);
}

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

.btn-secondary:hover {
    background: #32cd32;
    color: #1a1a3a;
}

.hero-image {
    position: relative;
}

.image-placeholder {
    width: 100%;
    height: 350px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

/* Section Styling */
section {
    padding: 80px 0;
}

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

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #cccccc;
    max-width: 600px;
    margin: 0 auto;
}

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

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

.about-item {
    background: #1a1a3a;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(50, 205, 50, 0.1);
    transition: all 0.3s ease;
}

.about-item:hover {
    transform: translateY(-5px);
    border-color: rgba(50, 205, 50, 0.3);
    box-shadow: 0 10px 30px rgba(50, 205, 50, 0.1);
}

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

.about-item h4 {
    font-size: 1.3rem;
    color: #32cd32;
    margin-bottom: 15px;
    font-weight: 600;
}

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

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

.service-card {
    background: #1a1a3a;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(50, 205, 50, 0.1);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(50, 205, 50, 0.1);
    border-color: rgba(50, 205, 50, 0.3);
}

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

.service-card h4 {
    font-size: 1.2rem;
    color: #32cd32;
    margin-bottom: 10px;
    font-weight: 600;
}

.service-card p {
    color: #cccccc;
    font-size: 0.95rem;
}

/* Gaming Stations */
.stations {
    background: #151530;
}

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

.station-card {
    background: #1a1a3a;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(50, 205, 50, 0.1);
}

.station-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(50, 205, 50, 0.1);
}

.station-image {
    height: 250px;
}

.station-info {
    padding: 25px;
}

.station-info h4 {
    font-size: 1.3rem;
    color: #32cd32;
    margin-bottom: 10px;
    font-weight: 600;
}

.station-info p {
    color: #cccccc;
}

/* Products Section */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background: #1a1a3a;
    border-radius: 20px;
    padding: 30px;
    position: relative;
    border: 1px solid rgba(50, 205, 50, 0.1);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(50, 205, 50, 0.1);
}

.product-card.featured {
    border-color: #32cd32;
    background: linear-gradient(135deg, #1a1a3a 0%, #252548 100%);
}

.product-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #32cd32;
    color: #1a1a3a;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.product-header {
    text-align: center;
    margin-bottom: 25px;
}

.product-header h4 {
    font-size: 1.3rem;
    color: #32cd32;
    margin-bottom: 10px;
    font-weight: 600;
}

.product-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
}

.product-features ul {
    list-style: none;
    margin-bottom: 30px;
}

.product-features li {
    color: #cccccc;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.product-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #32cd32;
    font-weight: bold;
}

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

.events-list {
    max-width: 600px;
    margin: 0 auto 40px;
}

.event-item {
    display: flex;
    gap: 20px;
    background: #1a1a3a;
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 20px;
    border: 1px solid rgba(50, 205, 50, 0.1);
    transition: all 0.3s ease;
}

.event-item:hover {
    transform: translateX(5px);
    border-color: rgba(50, 205, 50, 0.3);
}

.event-date {
    background: #32cd32;
    color: #1a1a3a;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    min-width: 70px;
}

.event-date .day {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.event-date .month {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 2px;
}

.event-info h4 {
    color: #32cd32;
    font-size: 1.2rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.event-info p {
    color: #cccccc;
    font-size: 0.95rem;
}

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

/* Pricing Section */
.pricing-table {
    max-width: 600px;
    margin: 0 auto;
    background: #1a1a3a;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(50, 205, 50, 0.1);
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    border-bottom: 1px solid rgba(50, 205, 50, 0.1);
}

.pricing-row:last-child {
    border-bottom: none;
}

.pricing-item {
    color: #cccccc;
    font-size: 1rem;
}

.pricing-price {
    color: #32cd32;
    font-size: 1.2rem;
    font-weight: 600;
}

/* Why Us Section */
.why-us {
    background: #151530;
}

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

.why-item {
    text-align: center;
    padding: 30px;
}

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

.why-item h4 {
    font-size: 1.3rem;
    color: #32cd32;
    margin-bottom: 15px;
    font-weight: 600;
}

.why-item p {
    color: #cccccc;
    line-height: 1.6;
}

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

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: #1a1a3a;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(50, 205, 50, 0.1);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(50, 205, 50, 0.1);
}

.contact-icon {
    flex-shrink: 0;
}

.contact-info h4 {
    color: #32cd32;
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.contact-info a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
}

.contact-info a:hover {
    color: #32cd32;
}

.contact-info p {
    color: #cccccc;
    margin: 0;
    line-height: 1.4;
}

.map-placeholder {
    height: 350px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer {
    background: #1a1a3a;
    padding: 50px 0 20px;
    border-top: 1px solid rgba(50, 205, 50, 0.2);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-section:first-child {
    flex: 2;
    max-width: 400px;
}

.footer-section h4 {
    color: #32cd32;
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-description {
    color: #cccccc;
    margin-top: 15px;
    line-height: 1.6;
}

.footer-links {
    list-style: none;
}

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

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

.footer-links a:hover {
    color: #32cd32;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(50, 205, 50, 0.1);
    color: #888888;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .stations-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .footer-section {
        min-width: auto;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .hero {
        padding: 50px 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    section {
        padding: 50px 0;
    }
    
    .about-grid,
    .services-grid,
    .products-grid,
    .why-us-grid,
    .contacts-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .pricing-row {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .event-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .event-date {
        align-self: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .about-item,
    .service-card,
    .product-card,
    .contact-item {
        padding: 20px;
    }
}

/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 58, 0.95);
    backdrop-filter: blur(10px);
    border-top: 2px solid #32cd32;
    padding: 20px 0;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.cookie-text h4 {
    color: #32cd32;
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.cookie-text p {
    color: #cccccc;
    margin: 0;
    line-height: 1.5;
}

.cookie-text a {
    color: #32cd32;
    text-decoration: none;
}

.cookie-text a:hover {
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-btn.accept {
    background: #32cd32;
    color: #1a1a3a;
}

.cookie-btn.accept:hover {
    background: #28a428;
    transform: translateY(-2px);
}

.cookie-btn.reject {
    background: #dc3545;
    color: #ffffff;
}

.cookie-btn.reject:hover {
    background: #c82333;
    transform: translateY(-2px);
}

.cookie-btn.customize {
    background: transparent;
    color: #32cd32;
    border: 1px solid #32cd32;
}

.cookie-btn.customize:hover {
    background: rgba(50, 205, 50, 0.1);
    border-color: #28a428;
}

/* Cookie Modal Styles */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1001;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.cookie-modal.show {
    display: flex;
}

.cookie-modal-content {
    background: #1a1a3a;
    border-radius: 15px;
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    border: 2px solid #32cd32;
}

.cookie-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid rgba(50, 205, 50, 0.2);
}

.cookie-modal-header h3 {
    color: #32cd32;
    margin: 0;
    font-size: 1.3rem;
}

.cookie-close {
    background: none;
    border: none;
    color: #cccccc;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie-close:hover {
    color: #32cd32;
}

.cookie-modal-body {
    padding: 25px;
}

.cookie-category {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(50, 205, 50, 0.1);
}

.cookie-category:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.cookie-category-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.cookie-category h4 {
    color: #32cd32;
    margin: 0;
    font-size: 1.1rem;
}

.cookie-category p {
    color: #cccccc;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.cookie-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.cookie-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.3s;
    border-radius: 24px;
}

.cookie-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

input:checked + .cookie-slider {
    background-color: #32cd32;
}

input:disabled + .cookie-slider {
    background-color: #32cd32;
    opacity: 0.6;
    cursor: not-allowed;
}

input:checked + .cookie-slider:before {
    transform: translateX(26px);
}

.cookie-modal-footer {
    padding: 20px 25px;
    border-top: 1px solid rgba(50, 205, 50, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-policy-link {
    color: #32cd32;
    text-decoration: none;
    font-size: 0.9rem;
}

.cookie-policy-link:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }
    
    .cookie-buttons {
        justify-content: center;
        width: 100%;
    }
    
    .cookie-btn {
        padding: 10px 16px;
        font-size: 0.85rem;
        flex: 1;
        min-width: 0;
    }
    
    .cookie-modal-content {
        margin: 10px;
        max-height: 90vh;
    }
    
    .cookie-modal-footer {
        flex-direction: column;
        gap: 15px;
    }
    
    .cookie-category-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}