@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e67e22;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --text-dark: #333333;
    --text-light: #7f8c8d;
    --shadow: 0 4px 6px rgba(0,0,0,0.1);
    --radius: 8px;
    --max-width: 1200px;
}

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

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-light);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--secondary-color);
    color: white;
    border-radius: var(--radius);
    font-weight: 600;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.btn-accent {
    background-color: var(--accent-color);
}

.btn-accent:hover {
    background-color: #d35400;
}

header {
    background-color: var(--bg-white);
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo i {
    color: var(--secondary-color);
}

.nav-menu {
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav-link {
    font-weight: 500;
    color: var(--primary-color);
}

.nav-link:hover {
    color: var(--secondary-color);
}

.hamburger {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

.hero {
    margin-top: 80px;
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 600px;
    display: flex;
    align-items: center;
}

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

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.hero-image img {
    border-radius: var(--radius);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.section-subtitle {
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-light);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.step-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: 0.3s;
}

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

.step-icon {
    width: 70px;
    height: 70px;
    background: #ecf0f1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--secondary-color);
    font-size: 28px;
}

.step-card h3 {
    margin-bottom: 15px;
}

.benefits {
    background-color: var(--bg-white);
}

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

.benefit-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.benefit-card i {
    font-size: 40px;
    color: var(--accent-color);
    margin-bottom: 20px;
}

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

.game-card {
    background: var(--bg-white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: 0.3s;
}

.game-card:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.game-image {
    height: 380px;
    background-color: #ddd;
    overflow: hidden;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.game-card:hover .game-image img {
    transform: scale(1.1);
}

.game-content {
    padding: 20px;
    text-align: center;
}

.game-content h3 {
    margin-bottom: 10px;
}

.game-content p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.social-exp {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
}

.social-exp h2 {
    color: white;
    margin-bottom: 20px;
}

.social-exp p {
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 18px;
}

.social-pills {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.pill {
    background: rgba(255,255,255,0.1);
    padding: 10px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.review-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border-left: 5px solid var(--secondary-color);
}

.review-text {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.review-author {
    font-weight: 700;
    color: var(--primary-color);
}

.review-location {
    font-size: 12px;
    color: var(--text-light);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-white);
    margin-bottom: 15px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: 0.3s;
    background-color: #f1f1f1;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 200px;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: var(--bg-white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: var(--radius);
    font-family: inherit;
}

.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.map-placeholder {
    width: 100%;
    height: 200px;
    background-color: #ddd;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    margin-top: 20px;
}

footer {
    background-color: var(--primary-color);
    color: white;
    padding: 60px 0 20px;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.footer-links a {
    color: #bdc3c7;
    font-size: 14px;
}

.footer-links a:hover {
    color: white;
}

.footer-disclaimer {
    max-width: 800px;
    margin: 0 auto 30px;
    font-size: 12px;
    color: #95a5a6;
    line-height: 1.5;
}

.social-icons {
    margin-bottom: 30px;
}

.social-icons a {
    color: white;
    font-size: 20px;
    margin: 0 10px;
}

.copyright {
    font-size: 12px;
    color: #7f8c8d;
    border-top: 1px solid #34495e;
    padding-top: 20px;
}

.age-gate {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.age-content {
    background: white;
    padding: 40px;
    border-radius: var(--radius);
    text-align: center;
    max-width: 500px;
    width: 90%;
}

.age-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(44, 62, 80, 0.95);
    color: white;
    padding: 20px;
    z-index: 5000;
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.cookie-buttons {
    margin-top: 15px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.game-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 6000;
    display: none;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: white;
    width: 90%;
    max-width: 900px;
    padding: 20px;
    border-radius: var(--radius);
    position: relative;
}

.close-modal {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-dark);
}

.iframe-container {
    width: 100%;
    height: 500px;
    background: #000;
    margin-top: 15px;
}

.iframe-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 5500;
    display: none;
    justify-content: center;
    align-items: center;
}

.cookie-modal-content {
    background: white;
    width: 90%;
    max-width: 500px;
    padding: 30px;
    border-radius: var(--radius);
}

.cookie-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.legal-content {
    background: var(--bg-white);
    padding: 40px;
    border-radius: var(--radius);
    margin-top: 40px;
    margin-bottom: 40px;
    box-shadow: var(--shadow);
}

.legal-content h1 {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.legal-content h2 {
    margin-top: 25px;
    margin-bottom: 15px;
    font-size: 20px;
}

.legal-content p {
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .header-container {
        padding: 0 20px;
    }
    
    .hamburger {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 40px;
        transition: 0.3s;
        box-shadow: 0 10px 10px rgba(0,0,0,0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .iframe-container {
        height: 300px;
    }
}

@media (min-width: 769px) {
    .cookie-banner {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
    .cookie-buttons {
        margin-top: 0;
    }
} .footer-legal {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      margin: 35px auto;

  }

  .footer-legal img {
      height: 60px;
      margin: 10px;
  }