/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', 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%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(5px);
}

.cookie-content {
    background: #F5F0E8;
    padding: 60px 40px;
    border-radius: 20px;
    max-width: 600px;
    margin: 20px;
    text-align: left;
}

.cookie-content h3 {
    color: #1a237e;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cookie-content p {
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.cookie-content a {
    color: #1a237e;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-accept, .btn-refuse {
    padding: 15px 30px;
    border: 2px solid #1a237e;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 180px;
}

.btn-accept {
    background: #D8B4E2;
    color: #1a237e;
}

.btn-accept:hover {
    background: #c9a3d4;
    transform: translateY(-2px);
}

.btn-refuse {
    background: transparent;
    color: #1a237e;
}

.btn-refuse:hover {
    background: #1a237e;
    color: #F5F0E8;
    transform: translateY(-2px);
}

.cookie-consent.hidden {
    display: none;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
   
    z-index: 1000;
    padding: 15px 0;
   
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo img {
    width: 50px;
}

.nav-logo a {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1a237e;
    text-decoration: none;
}

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

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
}

.nav-link {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #1a237e;
}

.btn-play-nav {
    border-radius: 16px;
border: 2px solid  #070E2F;
background:  #FFF;
box-shadow: 2px 4px 0 0 #000;
    color: #070E2F;
    padding: 12px 25px;

    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-play-nav:hover {
    background: #303f9f;
    transform: translateY(-2px);
}

.burger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background: #1a237e;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    background: #F4C4D6;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    padding-bottom: 60px;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1a237e;
    line-height: 1.2;
    margin-bottom: 25px;
}

.hero-description {
    font-size: 1.2rem;
    color: #4a4a4a;
    margin-bottom: 35px;
    line-height: 1.6;
}

.btn-start {
    border-radius: 16px;
border: 2px solid  #070E2F;
background:  #FFF;
box-shadow: 2px 4px 0 0 #000;
    color: #070E2F;
    padding: 18px 35px;
  
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-start:hover {
    background: #303f9f;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(26, 35, 126, 0.3);
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 547px;
    width: 100%;
}

.hero-image img {
   width: 100%;
}

.gamer-illustration::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
}

/* Vision Section */
.vision {
    padding: 100px 0;
    background: #F5F0E8;
}

.vision-header {
    position: relative;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
    color: #1a237e;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: #9C88FF;
    border-radius: 2px;
}

.decorative-flower-vision {
    position: absolute;
    top: -20px;
    right: 0;
    width: 130px;
    height: 130px;
    filter: drop-shadow(2px 4px 0 #000);
}

.decorative-flower-vision img {
    width: 100%;
}

.vision-cards {
    max-width: 1200px;
    margin: 0 auto;
}

.vision-row-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.vision-row-bottom {
    display: flex;
    justify-content: center;
}

.vision-card {
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    border-radius: 20px;
border: 2px solid #070E2F;
box-shadow: 4px 4px 0 0 #070E2F;
}

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

.vision-card.full-width {
    width: 100%;
    max-width: 800px;
}

.blue-card {
    background: linear-gradient(135deg, #4FC3F7 0%, #2196F3 100%);
    color: white;
    
}

.green-card {
    background: linear-gradient(135deg, #81C784 0%, #4CAF50 100%);
    color: white;
  
}

.pink-card {
    background: linear-gradient(135deg, #F8BBD9 0%, #E1BEE7 100%);
    color: #333;
   
}

.vision-card img {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.triangle-icon {
    background: #FFD700;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    border-radius: 8px;
}

.circle-icon {
    background: #FF8A9B;
    border-radius: 50%;
}

.droplet-icon {
    background: #87CEEB;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
}

.vision-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.vision-card p {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.95;
}

/* Player Voices Section */
.player-voices {
    padding: 100px 0;
    background: white;
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.testimonial {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 20px;
    display: flex;
    gap: 20px;
    transition: transform 0.3s ease;
    border-radius: 24px;
border: 2px solid #070E2F;
background: #F5F5F5;
box-shadow: 4px 4px 0 0 #070E2F;
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #9C88FF, #6B5B95);
    border-radius: 50%;
    flex-shrink: 0;
}

.testimonial-avatar img {
    width: 100%;
}

.testimonial-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a237e;
    margin-bottom: 5px;
}

.testimonial-content .location {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
    display: block;
}

.testimonial-content p {
    color: #555;
    line-height: 1.6;
}

/* About Section */
.about {
    padding: 100px 0;
   background:  #F6E0E9;
    position: relative;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-illustration {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
   max-width: 500px;
   width: 100%;
}

.about-illustration img {
    width: 100%;
}




.about-text-content {
    color: #333;
}

.about-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1a237e;
}

.highlight-yellow {
    color: #FFD700;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 25px;
    color: #4a4a4a;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 40px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.stat-icon {
    flex-shrink: 0;
}

.icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50px;
border: 2px solid  #070E2F;
background:  #F5BD33;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.icon-person::before {
    content: '👤';
    font-size: 20px;
}

.icon-check::before {
    content: '✓';
    font-size: 20px;
    color: #1a237e;
    font-weight: bold;
}

.icon-globe::before {
    content: '🌍';
    font-size: 18px;
}

.stat-content .stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a237e;
    margin-bottom: 5px;
}

.stat-content .stat-label {
    font-size: 0.95rem;
    color: #4a4a4a;
    line-height: 1.4;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: white;
}

.faq-items {
    margin-top: 60px;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 16px;
border: 1px solid  #545C81;
background:  #F2F2F7;
padding: 24px;
}

.faq-item {
   border-radius: 16px;
border: 2px solid #070E2F;
background: #FFF;
box-shadow: 2px 4px 0 0 #000;
    margin-bottom: 20px;
    padding: 20px;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #9C88FF;
}

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 600;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

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

.faq-answer p {
    color: #666;
    line-height: 1.6;
}

/* CTA Section */
.cta {
    padding: 100px 0;
   background: #336BB7;
    text-align: center;
    color: white;
}

.cta h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 25px;
}

.cta p {
    font-size: 1.1rem;
   color: white;
    margin-bottom: 35px;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.btn-cta {
    background: #1a237e;
    color: white;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background: #303f9f;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(26, 35, 126, 0.3);
}

/* Footer */
.footer {
    background: #336BB7;
    color: white;
    padding: 60px 0 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    color:  #F5BD33;
text-align: center;
font-family: Poppins;
font-size: 34px;
font-style: normal;
font-weight: 600;
line-height: normal;
text-transform: uppercase;
}

.footer-logo img {
    width: 50px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 1.5rem;
    font-weight: 800;
  
}

.footer-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #9C88FF;
}

.footer-section p {
    color: #ccc;
    margin-bottom: 5px;
}

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.social-link {
    width: 35px;
    height: 35px;
    border-radius: 24px;
border: 1px solid #000;
background: #FFF;
box-shadow: 2px 2px 0 0 #000;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
}

.social-link img {
    width: 17px;
}

.social-link:hover {
    background: #9C88FF;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    color: #999;
}

.games-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 100px 0 40px;
}

.game-item {
    width: 100%;
    flex: 0 1 31%;
    aspect-ratio: 346 / 180;
}

.game-item img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
box-shadow: 4px 4px 0 0 #070E2F;
object-fit: cover;
}

/* Responsive Design */
@media (max-width: 1023px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 60px;
        transition: left 0.3s ease;
    }

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

    .nav-list {
        flex-direction: column;
        gap: 40px;
    }

    .nav-link {
        font-size: 1.2rem;
    }

    .burger-menu {
        display: flex;
    }

    .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-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .gamer-illustration {
        width: 300px;
        height: 300px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .about-illustration {
        order: 2;
    }

    .about-text-content {
        order: 1;
    }

    .gamer-character {
        width: 250px;
        height: 350px;
    }

    .vision-row-top {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .decorative-flower-vision {
        right: 20px;
    }
}

@media (max-width: 768px) {
    .cookie-content {
        padding: 40px 30px;
    }

    .cookie-content h3 {
        font-size: 2rem;
    }

    .cookie-buttons {
        flex-direction: column;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .about-title {
        font-size: 2.4rem;
    }

    .about-stats {
        align-items: center;
    }

    .stat-item {
        max-width: 400px;
    }

    .gamer-character {
        width: 200px;
        height: 300px;
        padding: 30px 15px;
    }

    .game-item {
        flex: 0 1 45%;
    }

    .interface-elements {
        right: -40px;
        top: -20px;
    }

    .interface-card {
        width: 100px;
        height: 60px;
    }

    .vision-card {
        padding: 30px 25px;
    }

    .testimonials {
        grid-template-columns: 1fr;
    }

    .testimonial {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-logo, .social-links {
        justify-content: center;
    }

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

    .decorative-flower-vision {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .cookie-content {
        padding: 30px 20px;
        margin: 10px;
    }

    .cookie-content h3 {
        font-size: 1.8rem;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .gamer-illustration {
        width: 250px;
        height: 250px;
    }

    .about-title {
        font-size: 2rem;
    }

    .about-description {
        font-size: 1rem;
    }

    .gamer-character {
        width: 180px;
        height: 260px;
        padding: 25px 12px;
    }

    .vr-headset {
        width: 90px;
        height: 45px;
    }

    .character-body {
        width: 80px;
        height: 120px;
    }

    .gamepad {
        width: 60px;
        height: 30px;
    }

    .stat-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .stat-content .stat-number {
        font-size: 1.5rem;
    }

    .vision-card {
        padding: 25px 20px;
    }

    .testimonial {
        padding: 20px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .decorative-flower {
        width: 60px;
        height: 60px;
        top: 10px;
        left: 10px;
    }

    .star-decoration {
        width: 40px;
        height: 40px;
    }
}

              .page {
                padding: 140px 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;
              }

              
                

                