/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #1a1a1a;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    height: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.3s ease;
}

.cookie-consent.hidden {
    opacity: 0;
    pointer-events: none;
}

.cookie-content {
    background: white;
    padding: 40px;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    color: #333;
}

.cookie-content h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #000;
}

.cookie-content p {
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.cookie-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
}

.cookie-btn.accept {
    background-color: #FF6B35;
    color: white;
}

.cookie-btn.accept:hover {
    background-color: #e55a2b;
}

.cookie-btn.reject {
    background-color: #FF6B35;
    color: white;
}

.cookie-btn.reject:hover {
    background-color: #e55a2b;
}

/* Header */
.header {
    background: linear-gradient(90deg, #FF7732 0%, #4D200D 100%);
    padding: 15px 0;
    position: relative;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-img {
    width: 30px;
    height: 30px;
}

.logo-text {
    font-size: 18px;
    font-weight: 600;
    color: #4FC3F7;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-list a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-list a:hover {
    color: #FF6B35;
}

.burger-menu {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #2d1810, #1a1a1a);
    padding: 120px 0 60px;
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/hero.png') no-repeat center center;
    background-size: cover;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    height: 100%;
}

.hero-title {
    margin-bottom: 40px;
}

.game-series {
    display: block;
    font-size: 24px;
    font-weight: 400;
    color: #FF6B35;
    margin-bottom: 10px;
    letter-spacing: 3px;
}

.game-title {
    display: block;
    font-size: 64px;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
}

.google-play-btn {
    display: inline-flex;
    align-items: center;
 max-width: 210px;
 width: 100%;
position: relative;
z-index: 3;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.google-play-btn:hover {
  
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.google-play-btn img {
    width: 100%;
}

.btn-text {
    font-size: 12px;
    margin-right: 10px;
}

.google-play-logo {
   
}

.hero-image {
    position: relative;
    z-index: 2;
    margin-top: 40px;
}

.hero-img {
    width: 100%;
    max-width: 800px;
    height: auto;
}

/* About Section */
.about {
   background: linear-gradient(90deg, #FF7732 0%, #4D200D 100%);
    padding: 80px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.about-description {
    font-size: 18px;
    margin-bottom: 25px;
    line-height: 1.7;
}

.about-features p {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.about-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Advantages Section */
.advantages {
    background-color: #1a1a1a;
    padding: 80px 0;
}

.advantages .section-title {
    text-align: center;
    margin-bottom: 60px;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.advantage-item {
    background: linear-gradient(135deg, #2d2d2d, #1f1f1f);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid #333;
}

.advantage-item:hover {
    transform: translateY(-5px);
}

.advantage-icon {
    margin-bottom: 20px;
}

.advantage-icon img {
    width: 60px;
    height: 60px;
}

.advantage-item h3 {
    font-size: 16px;
    font-weight: 600;
    color: #FF6B35;
    margin-bottom: 15px;
}

.advantage-item p {
    font-size: 14px;
    color: #cccccc;
    line-height: 1.5;
}

/* CTA Section */
.cta {
   
    padding: 60px 0;
    background-image: url(../images/ibcg.png);
    background-size: cover;
}

.cta-content {
    display: flex;
    align-items: center;
    gap: 40px;
     background: linear-gradient(90deg, #FF7732 0%, #4D200D 100%);
     padding: 20px;
     border-radius: 15px;
}

.cta-image {
    flex: 1;
}

.cta-img {
    width: 100%;
    max-width: 300px;
    height: auto;
}

.cta-text {
    flex: 1;
    text-align: center;
}

.cta-text h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Reviews Section */
.reviews {
    background: linear-gradient(90deg, #FF7732 0%, #4D200D 100%);
    padding: 80px 0;
}

.reviews .section-title {
    text-align: center;
    margin-bottom: 60px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.review-item {
    background: linear-gradient(135deg, #2d2d2d, #1f1f1f);
    padding: 30px;
    border-radius: 15px;
    display: flex;
    gap: 20px;
    border: 1px solid #333;
}

.review-avatar {
    flex-shrink: 0;
}

.review-avatar img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.review-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: #FF6B35;
    margin-bottom: 10px;
}

.review-content p {
    font-size: 14px;
    color: #cccccc;
    line-height: 1.5;
    font-style: italic;
}

/* Newsletter Section */
.newsletter {
    background: #fff;
    padding: 80px 0;
    color: #000;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.newsletter .section-title {
    margin-bottom: 20px;
    color: #000;
}

.newsletter-description {
    font-size: 16px;
    color: #000;
    margin-bottom: 40px;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    text-align: left;
}

.form-group label {
    display: block;
    font-size: 14px;
    color: #cccccc;
    margin-bottom: 5px;
}

.form-group input {
    width: 100%;
    padding: 15px;
    border-radius: 12px;
border: 1px solid rgba(140, 205, 255, 0.30);
background: #FFF;
box-shadow: 0px 25px 50px -12px rgba(0, 0, 0, 0.25);
    color: #000;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #FF6B35;
}

.submit-btn {
    background-color: #FF6B35;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.submit-btn:hover {
    background-color: #e55a2b;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background-color: #0d0d0d;
    padding: 30px 0;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #FF6B35;
}

.footer-links span {
    color: #cccccc;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .game-title {
        font-size: 48px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .advantages-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .cta-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .google-play-btn {
        max-width: 190px;
    }
    
    .nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: #1a1a1a;
        transition: left 0.3s ease;
        padding: 20px;
    }
    
    .nav.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 20px;
    }
    
    .hero {
        padding: 100px 0 40px;
        min-height: auto;
        height: 100%;
        aspect-ratio: 12 / 7;
    }
    
    .game-series {
        font-size: 18px;
    }
    
    .game-title {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .about {
        padding: 60px 0;
    }
    
    .advantages {
        padding: 60px 0;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .game-title {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .about-description {
        font-size: 16px;
    }
    
    .cookie-content {
        padding: 30px 20px;
    }
    
    .cookie-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .newsletter-form {
        gap: 15px;
    }
}

/* Animation for smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}
              .page {
                padding: 180px 0 80px;
              }
              
              .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;
                }

                