/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Exo', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: #1a1d2e;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, #ff6b35 0%, #f85a3e 100%);
    color: #ffffff;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-family: 'Exo', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    text-decoration: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #ff6b35;
    padding: 12px 30px;
    border: 2px solid #ff6b35;
    border-radius: 5px;
    font-family: 'Exo', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    text-decoration: none;
}

.btn-secondary:hover {
    background: #ff6b35;
    color: #ffffff;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 29, 46, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(5px);
}

.cookie-content {
    background: #252841;
    padding: 40px;
    border-radius: 10px;
    max-width: 600px;
    margin: 20px;
    text-align: left;
}

.cookie-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.cookie-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #b8c1ec;
}

.cookie-content a {
    color: #ff6b35;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-accept {
    background: #ff6b35;
    color: #ffffff;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-family: 'Exo', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.btn-learn {
    background: transparent;
    color: #ffffff;
    padding: 15px 30px;
    border: 2px solid #ffffff;
    border-radius: 5px;
    font-family: 'Exo', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.btn-learn:hover {
    background: #ffffff;
    color: #252841;
}

/* Age Verification */
.age-verification {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 29, 46, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    backdrop-filter: blur(5px);
}

.age-content {
    background: #252841;
    padding: 40px;
    border-radius: 10px;
    max-width: 500px;
    margin: 20px;
    text-align: center;
}

.age-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff4757 0%, #c44569 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 auto 20px;
    border: 4px solid #ff4757;
}

.age-content h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.age-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #b8c1ec;
}

.age-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-confirm {
    background: #7289da;
    color: #ffffff;
    padding: 15px 25px;
    border: none;
    border-radius: 5px;
    font-family: 'Exo', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.btn-exit {
    background: #596aa0;
    color: #ffffff;
    padding: 15px 25px;
    border: none;
    border-radius: 5px;
    font-family: 'Exo', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

/* Main Content */
.main-content {
    display: none;
}

/* Header */
.header {
    background: #1a1d2e;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: #FFF;
font-family: Exo;
font-size: 24px;
font-style: normal;
font-weight: 700;
line-height: normal;
}

.logo img {
    height: 40px;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-list a {
    color: #b8c1ec;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.nav-list a:hover {
    color: #ff6b35;
}

.burger-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.burger-btn span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.burger-btn.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.burger-btn.active span:nth-child(2) {
    opacity: 0;
}

.burger-btn.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Warning Banner */
.warning-banner {
    background: #ff4757;
    padding: 10px 0;
}

.warning-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
}

.warning-icon {
    background: #ffffff;
    color: #ff4757;
    padding: 5px 10px;
    border-radius: 20px;
    font-weight: 800;
    font-size: 12px;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1d2e 0%, #252841 100%);
    position: relative;
    overflow: hidden;
    background: url('../images/hero.png') no-repeat center right;
    background-size: cover;
}

.hero::before {
    /* content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('../images/hero.png') no-repeat center right;
    background-size: cover;
    opacity: 0.1; */
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #b8c1ec 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text p {
    font-size: 18px;
    color: #b8c1ec;
    margin-bottom: 15px;
}

.hero-text .btn-primary {
    margin-top: 20px;
    padding: 15px 40px;
    font-size: 16px;
}

.hero-image img {
    width: 100%;
    height: auto;
}

/* Why Choose Section */
.why-choose {
    padding: 80px 0;
    background: #252841;
}

.why-choose h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #ffffff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 40px;
}

.feature-item {
    text-align: center;
    padding: 30px 20px;
    background: #1a1d2e;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #7289da 0%, #5b6eae 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon img {
    width: 40px;
    height: 40px;
}

.feature-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

.feature-item p {
    font-size: 16px;
    color: #b8c1ec;
    line-height: 1.6;
}

/* Top Games Section */
.top-games {
    padding: 80px 0;
    background: #1a1d2e;
}

.top-games h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.top-games > .container > p {
    text-align: center;
    font-size: 18px;
    color: #b8c1ec;
    margin-bottom: 60px;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.game-card {
    background: #252841;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
    position: relative;
}

.game-card:hover {
    transform: translateY(-10px);
}

.game-image {
    width: 100%;
   
    overflow: hidden;
}

.game-image img {
    width: 100%;
 display: block;
    object-fit: cover;
}

.game-cont {
    border-radius: 0 0 12px 12px;
border-right: 1px solid #434E78;
border-bottom: 1px solid #434E78;
border-left: 1px solid #434E78;
background: #202E59;
padding: 20px;
}

.btn-game {
    position: relative;
   text-decoration: none;
    background: linear-gradient(135deg, #ff6b35 0%, #f85a3e 100%);
    color: #ffffff;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-family: 'Exo', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    display: block;
    text-align: center;
}

.btn-game:hover {
    transform:  translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

/* About Section */
.about {
    padding: 80px 0;
    background: #252841;
    text-align: center;
}

.about h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #ffffff;
}

.about p {
    font-size: 18px;
    color: #b8c1ec;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

/* Achievements Section */
.achievements {
    padding: 80px 0;
    background: #1a1d2e;
    text-align: center;
}

.achievements h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #ffffff;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.achievement-item {
    padding: 30px 20px;
}

.achievement-number {
    font-size: 48px;
    font-weight: 800;
    color: #ff6b35;
    margin-bottom: 10px;
}

.achievement-label {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
}

.achievement-item p {
    font-size: 16px;
    color: #b8c1ec;
    line-height: 1.6;
}

/* Reviews Section */
.reviews {
    padding: 80px 0;
    background: #252841;
}

.reviews h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #ffffff;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.review-item {
    background: #1a1d2e;
    padding: 30px;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.review-item:hover {
    transform: translateY(-5px);
}

.review-stars {
    color: #ffd700;
    font-size: 20px;
    margin-bottom: 15px;
}

.review-author {
    font-size: 18px;
    font-weight: 600;
    color: #ff6b35;
    margin-bottom: 15px;
}

.review-item p {
    font-size: 16px;
    color: #b8c1ec;
    line-height: 1.6;
    font-style: italic;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #1a1d2e;
}

.contact h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #ffffff;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    background: #252841;
    border: 2px solid #3a3d58;
    border-radius: 5px;
    padding: 15px;
    font-family: 'Exo', sans-serif;
    font-size: 16px;
    color: #ffffff;
    transition: border-color 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #b8c1ec;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #ff6b35;
}

.contact-form textarea {
    min-height: 120px;
    resize: vertical;
}

.btn-submit {
    background: linear-gradient(135deg, #ff6b35 0%, #f85a3e 100%);
    color: #ffffff;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-family: 'Exo', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.contact-info {
    text-align: center;
    font-size: 16px;
    color: #b8c1ec;
}

.contact-info p {
    margin-bottom: 10px;
}

/* Footer */
.footer {
    background: #0f1119;
    padding: 60px 0 30px;
}

.footer-disclaimer {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #3a3d58;
}

.disclaimer-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff4757 0%, #c44569 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
    color: #ffffff;
    flex-shrink: 0;
}

.disclaimer-text h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
}

.disclaimer-text p {
    font-size: 14px;
    color: #b8c1ec;
    line-height: 1.6;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-bottom: 40px;
}

.footer-nav a {
    color: #b8c1ec;
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #ff6b35;
}

.footer-logos {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.footer-logos img {
    height: 40px;
    filter: grayscale(1) opacity(0.7);
    transition: all 0.3s ease;
}

.footer-logos img:hover {
    filter: grayscale(0) opacity(1);
}

.footer-copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #3a3d58;
}

.footer-copyright p {
    font-size: 14px;
    color: #b8c1ec;
}

/* Popup */
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.popup-content {
    background: #252841;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    max-width: 400px;
    margin: 20px;
}

.popup-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
}

.popup-content p {
    font-size: 16px;
    color: #b8c1ec;
    margin-bottom: 25px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 40px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: #252841;
        transition: right 0.3s ease;
        padding: 40px 20px;
    }
    
    .nav.active {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-list a {
        font-size: 18px;
        padding: 10px 0;
        border-bottom: 1px solid #3a3d58;
    }
    
    .burger-btn {
        display: flex;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero-text h1 {
        font-size: 32px;
    }
    
    .hero-text p {
        font-size: 16px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .achievements-grid {
        grid-template-columns: 1fr;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-disclaimer {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-nav {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .cookie-content,
    .age-content {
        padding: 30px 20px;
        margin: 10px;
    }
    
    .cookie-content h2,
    .age-content h2 {
        font-size: 24px;
    }
    
    .cookie-buttons,
    .age-buttons {
        flex-direction: column;
    }
    
    .btn-accept,
    .btn-learn,
    .btn-confirm,
    .btn-exit {
        width: 100%;
    }
    
    .warning-content {
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-text h1 {
        font-size: 28px;
    }
    
    .achievement-number {
        font-size: 36px;
    }
    
    h2 {
        font-size: 28px !important;
    }
    
    .contact-form {
        padding: 0 10px;
    }
}

/* Hidden classes */
.hidden {
    display: none !important;
}



.games-section {
    padding: 80px 0;
}

.game-frame {
    width: 100%;
    aspect-ratio: 110 / 62;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 40px;
}

.iframe {
    width: 100%;
    height: 100%;
}

              .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;
                }

                