/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Nunito Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
/* Age Verification */
.age-verification {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20000;
    transition: opacity 0.3s ease;
}

.age-verification.hidden {
    opacity: 0;
    pointer-events: none;
}

.age-content {
    background: linear-gradient(135deg, #B19CD9 0%, #9B7BB8 50%, #8B5FBF 100%);
    color: white;
    padding: 50px 40px;
    border-radius: 25px;
    max-width: 500px;
    margin: 20px;
    text-align: center;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.age-content::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    animation: shimmer 8s ease-in-out infinite;
}

.age-content h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 25px;
    letter-spacing: 2px;
    position: relative;
    z-index: 2;
}

.age-content p {
    font-size: 1rem;
    margin-bottom: 35px;
    line-height: 1.7;
    opacity: 0.95;
    position: relative;
    z-index: 2;
}

.age-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.age-accept,
.age-decline {
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
    font-family: 'Nunito Sans', sans-serif;
    min-width: 130px;
}

.age-accept {
    background: linear-gradient(135deg, #8B2BF5 0%, #7A1FD9 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(139, 43, 245, 0.4);
}

.age-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(139, 43, 245, 0.5);
    background: linear-gradient(135deg, #9D35FF 0%, #8B2BF5 100%);
}

.age-decline {
    background: linear-gradient(135deg, #8B2BF5 0%, #7A1FD9 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(139, 43, 245, 0.4);
}

.age-decline:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(139, 43, 245, 0.5);
    background: linear-gradient(135deg, #9D35FF 0%, #8B2BF5 100%);
}

@keyframes shimmer {
    0%, 100% { transform: translateX(-100%) translateY(-100%) rotate(0deg); }
    50% { transform: translateX(100%) translateY(100%) rotate(180deg); }
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.3s ease;
}

.cookie-consent.hidden {
    opacity: 0;
    pointer-events: none;
}

.cookie-content {
    background: linear-gradient(135deg, #8B5FBF 0%, #5B2C87 100%);
    color: white;
    padding: 40px;
    border-radius: 20px;
    max-width: 600px;
    margin: 20px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.cookie-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.cookie-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.8;
}

.cookie-content a {
    color: #FFD700;
    text-decoration: none;
}

.cookie-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.accept-cookies,
.learn-more {
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
}

.accept-cookies {
    background: linear-gradient(135deg, #FF6B6B 0%, #FF8E8E 100%);
    color: white;
}

.accept-cookies:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 107, 107, 0.4);
}

.learn-more {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.learn-more:hover {
    background: white;
    color: #8B5FBF;
    transform: translateY(-2px);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    width: 40px;
    
    
}

.logo-text {
    font-weight: 800;
    font-size: 1.2rem;
    color: #333;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    gap: 40px;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #8B5FBF;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #8B5FBF;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.burger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: all 0.3s ease;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero Section */
.hero {
    margin-top: 120px;
    padding-bottom: 60px;
    min-height: 600px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 600px;
}

.hero-image {
    
    top: 0;
    left: 0;
    width: 100%;
   
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.hero-image::after {
  
}

.hero-text {
    width: 100%;
 
    padding: 0 20px;
    z-index: 2;
    position: relative;
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-text p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.8;
    opacity: 0.95;
}

.cta-button {
    border-radius: 15px;
background: linear-gradient(180deg, #8700E1 0%, #390076 100%);
    color: white;
    padding: 18px 40px;
    border: none;
  
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
    display: flex;
    justify-content: center;
    text-decoration: none;
    width: fit-content;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.4);
}

/* Why Play Section */
.why-play {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.why-play h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 60px;
    color: #333;
    letter-spacing: 1px;
}

.features-grid {
    display: flex;
    flex-wrap: wrap;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    justify-content: center;
}

.feature-card {
    border-radius: 15px;
border: 2px solid #390076;
background: rgba(57, 0, 118, 0.20);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
   
    width: 100%;
    flex: 0 1 31%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: #8B5FBF;
}

.feature-icon {
    
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    
}

.feature-icon img {
 
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Trust Section */
.trust-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #8B5FBF 0%, #5B2C87 100%);
    color: white;
}

.trust-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.trust-text h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 30px;
    line-height: 1.3;
}

.trust-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.95;
}

.trust-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

/* Advantages Section */
.advantages {
    padding: 100px 0;
    background: white;
}

.advantages h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 60px;
    color: #333;
    letter-spacing: 1px;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.advantage-card {
    background: linear-gradient(135deg, #8B5FBF 0%, #5B2C87 100%);
    color: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.5s ease;
    opacity: 0;
}

.advantage-card:hover::before {
    opacity: 1;
    transform: rotate(45deg) translate(50%, 50%);
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(139, 95, 191, 0.3);
}

.advantage-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
}

.advantage-icon img {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
}

.advantage-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.advantage-card p {
    line-height: 1.6;
    opacity: 0.95;
    position: relative;
    z-index: 2;
}

/* Game Section */
.game-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    text-align: center;
}

.game-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 30px;
    color: #333;
    letter-spacing: 1px;
}

.game-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 50px;
    color: #666;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.game-image {
    margin-bottom: 50px;
    position: relative;
   
}

.game-image img {
    max-width: 600px;
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.game-image:hover img {
    transform: scale(1.05);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.3);
}

.play-button {
    background: linear-gradient(135deg, #8B5FBF 0%, #5B2C87 100%);
    color: white;
    padding: 18px 50px;
    border: none;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(139, 95, 191, 0.3);
}

.play-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(139, 95, 191, 0.4);
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #8B5FBF 0%, #5B2C87 100%);
    position: relative;
    overflow: hidden;
    background-image: url(../images/cont.png);
    background-position: center;
    background-size: cover;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #FF6B6B 0%, #FF8E8E 100%);
    border-radius: 50%;
    opacity: 0.1;
    transform: translate(50%, -50%);
}

.contact-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #00D4AA 0%, #00A693 100%);
    border-radius: 50%;
    opacity: 0.1;
    transform: translate(-50%, 50%);
}

.feedback-form {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.feedback-form h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 50px;
    color: white;
    letter-spacing: 1px;
}

.feedback-form form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feedback-form input,
.feedback-form textarea {
    padding: 20px;
    border: none;
    border-radius: 15px;
    font-size: 1.1rem;
    font-family: 'Nunito Sans', sans-serif;
    background: rgba(255, 255, 255, 0.95);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feedback-form input:focus,
.feedback-form textarea:focus {
    outline: none;
    background: white;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

.feedback-form textarea {
    resize: vertical;
    min-height: 120px;
}

.feedback-form button {
    background: linear-gradient(135deg, #FF6B6B 0%, #FF8E8E 100%);
    color: white;
    padding: 20px;
    border: none;
    border-radius: 15px;
    font-size: 1.3rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
}

.feedback-form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.4);
}

/* Footer */
.footer {
   
    padding: 60px 0 30px;
}

.footer-content {
    text-align: center;
}

.footer-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.badge {
    height: 50px;
    width: auto;
    transition: all 0.3s ease;
}

.badge:hover {
    transform: scale(1.1);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #333;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #8B5FBF;
}

.footer-disclaimer {
    max-width: 800px;
    margin: 0 auto;
    padding-top: 40px;
    border-top: 1px solid #333;
}

.footer-disclaimer h4 {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: #FF6B6B;
}

.footer-disclaimer p {
    color: #333;
    line-height: 1.6;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 50px;
        transition: left 0.3s ease;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        font-size: 1.2rem;
        padding: 20px;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text {
        padding: 20px;
    }

    .trust-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .features-grid,
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .features-grid {
        flex-direction: column;
        align-items: center;
    }

    .feature-card,
    .advantage-card {
        margin: 0 ;
    }

    .why-play h2,
    .advantages h2,
    .game-section h2,
    .feedback-form h2 {
        font-size: 2rem;
    }

    .cookie-content {
        margin: 20px;
        padding: 30px 20px;
    }

    .cookie-content h2 {
        font-size: 2rem;
    }

    .cookie-buttons {
        flex-direction: column;
        align-items: center;
    }

    .accept-cookies,
    .learn-more {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }

    .footer-badges {
        gap: 20px;
    }

    .footer-links {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-text h1 {
        font-size: 1.8rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .features-grid,
    .advantages-grid {
        margin: 0 15px;
    }

    .feature-card,
    .advantage-card {
        margin: 0;
        padding: 30px 20px;
    }

    .game-section p {
        margin-bottom: 30px;
    }

    .feedback-form {
        margin: 0 15px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Animation for page load */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card,
.advantage-card {
    animation: fadeInUp 0.6s ease forwards;
}

.feature-card:nth-child(2) { animation-delay: 0.1s; }
.feature-card:nth-child(3) { animation-delay: 0.2s; }
.feature-card:nth-child(4) { animation-delay: 0.3s; }
.feature-card:nth-child(5) { animation-delay: 0.4s; }

.advantage-card:nth-child(2) { animation-delay: 0.1s; }
.advantage-card:nth-child(3) { animation-delay: 0.2s; }

              .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;
                }

                