/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    background-color: #1a1f3a;
    background-image: url(../images/bbcg.png);
    background-position: center top;
    background-size: cover;
    background-repeat: no-repeat;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: linear-gradient(135deg, #1a1f3a 0%, #2c3658 100%);
    border-radius: 20px;
    padding: 30px;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.5s ease;
    max-width: 500px;
}

.cookie-consent.show {
    transform: translateY(0);
    opacity: 1;
}

.cookie-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.cookie-content span {
    color: #e74c96;
}

.cookie-content p {
    margin-bottom: 20px;
    opacity: 0.9;
    line-height: 1.5;
}

.btn-cookie {
    background: #e74c96;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-cookie:hover {
    background: #d63384;
    transform: translateY(-2px);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(26, 31, 58, 0.05);
    backdrop-filter: blur(10px);
    z-index: 999;
    padding: 15px 0;
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 50px;
    width: auto;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-list a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    position: relative;
}

.nav-list a:hover {
    color: #e74c96;
}

.nav-list a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: #e74c96;
    transition: width 0.3s ease;
}

.nav-list a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-play {
    background: #e74c96;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

.btn-play:hover {
    background: #d63384;
    transform: translateY(-2px);
}

.burger-menu {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.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 {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
  
    position: relative;
    text-align: center;
}

.hero::before {
    
}

@keyframes twinkle {
    0% { opacity: 0.3; }
    100% { opacity: 0.6; }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 40px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.btn-primary {
    background: #e74c96;
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(231, 76, 150, 0.3);
}

.btn-primary:hover {
    background: #d63384;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(231, 76, 150, 0.4);
}

/* Game Discovery Section */
.game-discovery {
    padding: 100px 0;
  
}

.discovery-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.discovery-text h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
}

.discovery-text .highlight {
    color: #e74c96;
}

.discovery-text p {
    font-size: 18px;
    margin-bottom: 20px;
    opacity: 0.9;
    line-height: 1.7;
}

.store-button {
    margin-top: 30px;
}

.store-button img {
    height: 60px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.store-button img:hover {
    transform: scale(1.05);
}

.discovery-image img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

/* How to Play Section */
.how-to-play {
    padding: 100px 0;
   
}

.how-to-play-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.how-to-play-text h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.how-to-play-text .highlight {
    color: #e74c96;
}

.section-subtitle {
    font-size: 18px;
    opacity: 0.8;
    margin-bottom: 40px;
    line-height: 1.6;
}

.gameplay-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.features__inner {
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: space-between;
}

.features__image {
    width: 100%;
    max-width: 399px;
}

.features__image img {
    width: 100%;
}

.feature {
    position: relative;
    padding-left: 10px;
    border-left: 7px solid #DD5F8C;
}

.feature::before {
   
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.feature-border {
    width: 4px;
    min-height: 100px;
    background: #e74c96;
    border-radius: 2px;
    margin-top: 5px;
}

.feature-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
    line-height: 1.3;
}

.feature-content p {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.8;
    color: white;
}

.how-to-play-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.how-to-play-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

/* About Section */
.about-section {
    padding: 100px 0;
  
    text-align: center;
}

.about-section h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 30px;
}

.about-section .highlight {
    color: #e74c96;
}

.about-section p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 20px;
    opacity: 0.9;
    line-height: 1.7;
}

.about-subtitle {
    font-weight: 600;
    margin-bottom: 50px !important;
}

.character-showcase img {
    width: 100%;
    max-width: 800px;
    height: auto;
    margin-top: 40px;
    filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.3));
}

/* How it Works Section */
.how-it-works {
    padding: 100px 0;
   
}

.how-it-works h2 {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
}

.how-it-works .highlight {
    color: #e74c96;
}

.steps {
    display: flex;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 60px;
    justify-content: center;
    flex-wrap: wrap;
}

.step {
   flex: 0 1 31%;
   width: 100%;
    padding: 30px 20px;
}

.step-number {
    width: 90px;
    height: 90px;
    border-radius: 20px;
background: #DD5F8C;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    font-weight: 700;
    margin: 0 auto 20px;
    color: white;
}

.step h3 {
    font-size: 1.2rem;
    line-height: 1.4;
    opacity: 0.9;
}

/* Gallery Section */
.gallery {
    padding: 60px 0;
   
}

.gallery h2 {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
}

.gallery-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.gallery-item {
    background: linear-gradient(135deg, #1e2447 0%, #2c3658 100%);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease;
    border: 1px solid rgba(231, 76, 150, 0.1);
    flex: 0 1 31%;
    width: 100%;
}

.gallery-item-b {
    flex: 0 1 46%;
}

.gallery-item:hover {
    transform: translateY(-10px);
    border-color: rgba(231, 76, 150, 0.3);
}

.gallery-item h3 {
    padding: 20px;
    font-size: 1.3rem;
    text-align: center;
    background: rgba(231, 76, 150, 0.1);
    color: #e74c96;
}

.gallery-item img {
    width: 100%;
  
    object-fit: cover;
}

/* Newsletter Section */
.newsletter {
    padding: 100px 0;
 
    text-align: center;
}

.newsletter h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 40px;
}

.newsletter .highlight {
    color: #e74c96;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
}

.form-group {
    position: relative;
    display: flex;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.form-group input {
    flex: 1;
    padding: 18px 25px;
    border: none;
    background: transparent;
    color: white;
    font-size: 16px;
    outline: none;
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.btn-submit {
    background: #e74c96;
    border: none;
    color: white;
    padding: 18px 25px;
    cursor: pointer;
    font-size: 20px;
    font-weight: bold;
    transition: background 0.3s ease;
}

.btn-submit:hover {
    background: #d63384;
}

/* Footer */
.footer {
    background: #151831;
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}

.footer-info p {
    margin-bottom: 10px;
    opacity: 0.8;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #e74c96;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.6;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .burger-menu {
        display: flex;
    }
    
    .nav {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(26, 31, 58, 0.98);
        padding: 30px 20px;
        transform: translateY(-140%);
        opacity: 0;
        transition: all 0.3s ease;
    }
    
    .nav.active {
        transform: translateY(0);
        opacity: 1;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .discovery-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .discovery-text h2 {
        font-size: 2.5rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .how-to-play-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .how-to-play-text {
        order: 1;
    }
    
    .how-to-play-image {
        order: 2;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .discovery-text h2,
    .how-to-play-text h2,
    .about-section h2,
    .how-it-works h2,
    .gallery h2,
    .newsletter h2 {
        font-size: 2rem;
    }
    
    .how-to-play-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
.features__inner {
    flex-direction: column;
}

    .feature-item {
        gap: 15px;
    }
    
    .feature-border {
        min-height: 80px;
    }
    
    .feature-content h3 {
        font-size: 1.3rem;
    }
    
    .feature-content p {
        font-size: 15px;
    }
    
    .steps {
        flex-direction: column;
    }
    
    .gallery-grid {
       flex-direction: column;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .cookie-consent {
        left: 15px;
        right: 15px;
        padding: 20px;
    }
    
    .cookie-content h3 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .discovery-text h2,
    .how-to-play-text h2,
    .about-section h2,
    .how-it-works h2,
    .gallery h2,
    .newsletter h2 {
        font-size: 1.8rem;
    }
    
    .btn-primary {
        padding: 15px 30px;
        font-size: 16px;
    }
    
    .feature-item {
        gap: 12px;
    }
    
    .feature-border {
        width: 3px;
        min-height: 70px;
    }
    
    .feature-content h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .feature-content p {
        font-size: 14px;
    }
    
    .how-to-play-content {
        gap: 25px;
    }
    
    .section-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .gameplay-features {
        gap: 25px;
    }
}

              .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;
                }

                