* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Urbanist', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #1a2b5f;
    color: white;
    z-index: 10000;
    padding: 20px 0;
    display: block;
}

.cookie-consent.hidden {
    display: none;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.cookie-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.cookie-content p {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.cookie-buttons button {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-family: 'Urbanist', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept-all {
    background: #007bff;
    color: white;
}

.btn-accept-all:hover {
    background: #0056b3;
}

.btn-decline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-decline:hover {
    background: white;
    color: #1a2b5f;
}

.btn-settings {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-settings:hover {
    background: white;
    color: #1a2b5f;
}

/* Header */
.header {
    background: #000E5B;
    padding: 15px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(74, 144, 226, 0.95);
    backdrop-filter: blur(10px);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-text {
    font-size: 28px;
    font-weight: 800;
    color: white;
    text-decoration: none;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-list a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-list a:hover {
    color: #ffd700;
}

.burger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.burger span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.burger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #4a90e2, #87ceeb);
    background-image: url(../images/hero.png);
    background-position: center;
    background-size: cover;
    color: white;
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
   align-items: center;
}

.hero-content {
    max-width: 736px;
    width: 100%;
    gap: 60px;
   
}

.hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.8;
}

.google-play-btn {
    display: inline-block;
    transition: transform 0.3s ease;
}

.google-play-btn:hover {
    transform: scale(1.05);
}

.google-play-btn img {
    height: 60px;
    width: auto;
}

.hero-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
}

/* Game Section */
.game-section {
    padding: 80px 0;
    background: white;
}

.game-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.game-section h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a2b5f;
    margin-bottom: 20px;
}

.game-section p {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.game-features {
    margin: 30px 0;
}

.game-features h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1a2b5f;
    margin-bottom: 15px;
}

.game-features ul {
    list-style: none;
    padding-left: 0;
}

.game-features li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
}

.game-features li:before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #4a90e2;
}

.game-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background: #1a2b5f;
    color: white;
}

.features-section h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 16px;
    line-height: 1.6;
}

.feature-support {
    text-align: center;
    margin: 40px 0;
}

.feature-support p {
    font-size: 18px;
    margin-bottom: 10px;
}

/* Reviews Section */
.reviews-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.reviews-section h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a2b5f;
    text-align: center;
    margin-bottom: 50px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.review-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
}

.review-card p {
    font-size: 16px;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.6;
}

.reviewer {
    font-weight: 600;
    color: #4a90e2;
}

/* Tips Section */
.tips-section {
    padding: 80px 0;
    background: white;
}

.tips-section h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a2b5f;
    text-align: center;
    margin-bottom: 50px;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.tip-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid #4a90e2;
}

.tip-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1a2b5f;
    margin-bottom: 15px;
}

.tip-card p {
    font-size: 16px;
    line-height: 1.6;
}

/* Gallery Section */
.gallery-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.gallery-section h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a2b5f;
    text-align: center;
    margin-bottom: 50px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.gallery-item img:hover {
    transform: scale(1.05);
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: #1a2b5f;
    color: white;
}

.contact-section h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
}

.contact-section p {
    text-align: center;
    font-size: 18px;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-family: 'Urbanist', sans-serif;
    font-size: 16px;
    background: white;
    color: #333;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.3);
}

.submit-btn {
    background: #4a90e2;
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 8px;
    font-family: 'Urbanist', sans-serif;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background: #357abd;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #0d1729;
    color: white;
    padding: 30px 0;
    text-align: center;
}

.footer-content p {
    margin-bottom: 10px;
}

.footer a {
    color: #4a90e2;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

/* Section Center */
.google-play-btn {
    display: block;
    text-align: center;
    margin: 30px auto 0;
    width: fit-content;
}

/* Responsive Design */
@media (max-width: 968px) {
    .burger {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: #1a2b5f;
        transition: left 0.3s ease;
        z-index: 999;
    }

    .nav.active {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
        padding: 50px 20px;
    }

    .nav-list li {
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .nav-list a {
        display: block;
        padding: 20px 0;
        font-size: 18px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .game-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .tips-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero h1 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .cookie-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .cookie-buttons button {
        width: 100%;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 16px;
    }

    .game-section h2,
    .features-section h2,
    .reviews-section h2,
    .tips-section h2,
    .gallery-section h2,
    .contact-section h2 {
        font-size: 28px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item img {
        height: 250px;
    }

    .container {
        padding: 0 15px;
    }

    .feature-card,
    .review-card,
    .tip-card {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .cookie-content h3 {
        font-size: 20px;
    }

    .cookie-content p {
        font-size: 14px;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero p {
        font-size: 14px;
    }

    .game-section h2,
    .features-section h2,
    .reviews-section h2,
    .tips-section h2,
    .gallery-section h2,
    .contact-section h2 {
        font-size: 24px;
    }

    .google-play-btn img {
        height: 50px;
    }
}

              .page {
                padding: 80px 0;
              }
              
              .page__inner {
                padding-top: 40px;
                width: 100%;
                margin: 0 auto;
                display: flex;
                  flex-direction: column;
                  row-gap: 18px;
                  line-height: 1.4;
              }

              .page__inner p {
                padding-bottom: 10px;
                padding-top: 8px;
              }

              .page__inner strong {
                font-weight: 600;
              }

              .page__inner ul {
                padding-left: 20px;
                list-style-type: disc;
              }

              .thank {
                padding-top: 140px;
                padding-bottom: 140px;
                display: flex;
                flex-direction: column;
                align-items: center;
                gap: 40px;
                text-align: center;
              }

              .thank-list {
                width: 100%;
                max-width: 1200px;
                margin: 0 auto 40px;
                display: flex;
                flex-direction: column;
                padding: 40px 24px;
                color: #121212;
                background: #E1E0DA;
              }

              .consent {
                border-radius: 10px;
                  background: #F5F5F5;
                    padding: 30px;
                    display: flex;
                    flex-direction: column;
                    justify-content: space-between;
                    gap: 15px;
                    max-width: 830px;
                    width: 95%;
                    position: fixed;
                    left: 10%;
                    bottom: 50px;
                    transform: translateX(-10%);
                    z-index: 21;
                 
                   
                }

               
                
                .consent__text {
                  font-size: 14px;
                  color: #131313;
                  span {
                    display: block;
                    font-size: 30px;
                    text-transform: uppercase;
                  }
                }
                
                .consent__buttons {
                  display: flex;
                 
                  gap: 30px;
                  align-items: center;
                  width: 100%;
                 
                }       
                
                @media (max-width: 900px) {
                  .consent {
                    left: 50%;
                    transform: translateX(-50%);
                  }
                  .consent__buttons {
                    justify-content: center;
                    flex-direction: column;
                  }
                }

                .button {
                  position: relative;
                  align-self: center;
                  display: flex;
                  align-items: center;
                  justify-content: center;
                  text-decoration: none;
                  border: none;
                  border-radius: 20px;
                 
                  max-width: 400px;
                  min-height: 48px;
                  padding: 0 24px;
                  font-family:
                    Roboto,
                    -apple-system,
                    Roboto,
                    Helvetica,
                    sans-serif;
                  font-size: 18px;
                  font-weight: 700;
                  color: rgba(255, 255, 255, 1);
                  white-space: nowrap;
                  text-transform: uppercase;
                  cursor: pointer;
                }

                