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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    height: 100%;
}

/* Buttons */
.btn-primary {
    background: #fff;
    color: #DC2626;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: fit-content;
}

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

.btn-secondary {
background: #DC2626;
    color: #fff;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: fit-content;
    position: relative;
    z-index: 3;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: white;
    padding: 20px;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-consent.show {
    transform: translateY(0);
}

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

.cookie-content p {
    flex: 1;
    margin: 0;
}

.cookie-content a {
    color: #DC2626;
    text-decoration: none;
}

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

.btn-accept, .btn-decline {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #DC2626;
    color: white;
}

.btn-decline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-accept:hover {
    background: #B91C1C;
}

.btn-decline:hover {
    background: white;
    color: #333;
}

/* Header */
.header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    flex-wrap: wrap;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 18px;
    color: #DC2626;
    text-decoration: none;
}

.logo img {
    width: 30px;
    height: 30px;
}

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

.nav-list a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-list a:hover {
    color: #DC2626;
}

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

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    background: #DC2626;
    color: white;
    padding: 50px 0 40px;
    position: relative;
    overflow: hidden;
    height: 674px;
}

.hero::before {
   
}

.hero-content {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    z-index: 2;
height: 100%;
max-width: 1130px;
width: 99%;
margin: 0 auto;
}

.hero-col {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 232px;
    flex: 0 1 19.3%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.fl-end {
    justify-content: flex-end;
}

.hero-text {
    width: 100%;
    max-width: 652px;
    flex: 0 1 54%;
    position: relative;
    z-index: 3;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    text-align: center;
}

.hero p {
    font-size: 14px;
    
    opacity: 0.9;
}

.hero-bcg {
    position: absolute;
    width: 100%;
    max-width: 1200px;
   bottom: 0;
    left: 50%;
    transform: translateX(-50%);

}



.hero-bcg img {
    display: block;
    width: 100%;
}

/* About Section */
.about {
    background: #F8F9FA;
    padding: 80px 0;
}

.about h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 30px;
    color: #333;
    text-align: left;
}

.about-block {
    display: flex;
    justify-content: flex-end;
    gap: 60px;
    align-items: flex-start;
    width: 65%;
    margin-left: auto;
}

.about-character {
    max-width: 385px;
    width: 30%;
    position: absolute;
    left: 0;
}

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

.about-text {
    max-width: 381px;
    width: 100%;
}

.about-text p {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    margin: 0;
}

.about-features {
    max-width: 385px;
    width: 100%;
    align-self: flex-end;
}

.about-features h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #333;
}

.about-features .feature {
    margin-bottom: 16px;
    font-size: 14px;
}

.about-features .feature:last-of-type {
    margin-bottom: 30px;
}

.about-features h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #333;
}

.about-features .feature p {
    font-size: 14px;
    color: #666;
    line-height: 1.1;
    margin: 0;
}

.about-features .btn-primary {
    width: 100%;
    margin-top: 10px;
}

/* Gallery Section */
.gallery {
    padding: 80px 0;
    text-align: center;
}

.gallery h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 30px;
    color: #333;
}

.gallery > p {
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.gallery-item {
   
    overflow: hidden;
    
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    object-fit: cover;
    display: block;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Popular Games Section */
.popular-games {
    background: #DC2626;
    color: white;
    padding: 80px 0;
    text-align: center;
}

.popular-games h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.popular-games > p {
    font-size: 18px;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
    max-width: 860px;
    width: 100%;
    margin: 50px auto 50px;
}

.game-item {
   max-width: 180px;
   width: 100%;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.game-item:hover {
    transform: translateY(-5px);
}

.game-item img {
    width: 100%;
display: block;
   
}

.about-game {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.game-image {
    max-width: 460px;
    width: 100%;
}

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

.game-text {
    display: flex;
   flex-direction: column;
    gap: 30px;
    max-width: 720px;
    width: 100%;
}

.t-left {
    display: flex;
   flex-direction: column;
   gap: 20px;
   text-align: left;
}

/* CTA Section */
.cta {
   
    padding: 190px 0;
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    gap: 60px;
}

.cta-text {
    width: 50%;
}

.cta h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 30px;
    color: #333;
}

.cta p {
    font-size: 14px;
    color: #666;
    margin-bottom: 30px;
}

.cta-gamepad {
   max-width: 567px;
   width: 45%;
   position: absolute;
   right: 0;
}

.cta-gamepad img {
   display: block;
    width: 100%;
}

/* Footer */
.footer {
    
    padding: 50px 0 30px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 18px;
}

.footer-logo img {
    width: 30px;
    height: 30px;
}

.footer-nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
   
}

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

.footer-nav a:hover {
    color: #DC2626;
}

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

.social-links a {
    display: block;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    color: #000;
}

.social-links a:hover {
    transform: translateY(-2px);
}

.social-twitter {
    
}

.social-facebook {
  
}

.social-links img {
    width: 100%;
  
}

.footer-bottom {
    
    
   
    
}

@media (max-width: 1200px) {
    .hero {
        aspect-ratio: 1208 / 674;
        height: auto;
        width: 100%;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    /* Mobile Navigation */
    .nav {
        
    }

    .nav.active {
        
    }

    .nav-list {
       
    }

    .about-game {
        flex-direction: column;
        align-items: flex-start;
    }


    /* Hero Mobile */
    .hero {
        padding: 30px 0 60px;
        height: auto;
        aspect-ratio: auto;
        overflow: hidden;
        padding-bottom: 40vw;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
        align-items: center;
        gap: 20px;
        height: auto;
        aspect-ratio: auto;
    }

    .hero-col {
        align-items: center;
        gap: 20px;
        order: 3;
        max-width: 380px;
    }

    .hero-text {
        order: 1;
    }

    .fl-end {
order: 2;
    }

    .hero h1 {
        font-size: 2.5rem;
        margin-bottom: 0;
    }

    .hero-bcg {
        width: 130%;
    }

    /* About Mobile */
    .about-content {
       flex-direction: column;
        gap: 40px;
    }

    .about-block {
        flex-direction: column;
        width: 100%;
        margin-left: 0;
    }

    .about h2 {
        text-align: center;
        font-size: 2rem;
    }

    .about-character {
       position: relative;
       left: -20px;
       width: 100%;
       max-width: 300px;
    }

    .about-text {
        order: 2;
       max-width: 100%;
        width: 100%;
    }

    .about-features {
        order: 3;
        width: 100%;
        max-width: 100%;
    }

    .about-features .btn-primary {
        width: auto;
        padding: 15px 30px;
    }

    .gallery h2, .popular-games h2, .cta h2 {
        font-size: 2rem;
    }

    /* Gallery Mobile */
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 15px;
    }

    /* Games Mobile */
    .games-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 15px;
    }

    .game-item {
       
    }

    .game-item img {
       
    }

    /* CTA Mobile */
.cta {
    padding: 60px 0;
    overflow: hidden;
}

    .cta-content {
        display: flex;
        flex-direction: column;
        gap: 20px;
  align-items: flex-start;
    }

    .cta-text {
        width: 100%;
        max-width: 450px;
    }

    .cta-gamepad {
        position: relative;
        right: -15px;
        align-self: flex-end;
        top: -20%;
        width: 100%;
        max-width: 340px;
        margin-top: -100px;
    }

    /* Footer Mobile */
    .footer-content {
        grid-template-columns: 1fr;
      
        gap: 30px;
    }

    .footer-nav ul {
        flex-wrap: wrap;
        gap: 15px;
    }

    .social-links {
        
    }

    /* Cookie Mobile */
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .cookie-buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
.hero {
    padding-bottom: 44vw;
}

.hero-bcg {
    width: 140%;
}

    .hero h1 {
        font-size: 2rem;
    }

    .about h2, .gallery h2, .popular-games h2, .cta h2 {
        font-size: 1.8rem;
    }

    .btn-primary {
        padding: 12px 24px;
        font-size: 14px;
    }

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

    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gallery-item, .game-item {
    animation: fadeInUp 0.6s ease forwards;
}

.gallery-item:nth-child(1) { animation-delay: 0.1s; }
.gallery-item:nth-child(2) { animation-delay: 0.2s; }
.gallery-item:nth-child(3) { animation-delay: 0.3s; }
.gallery-item:nth-child(4) { animation-delay: 0.4s; }

.game-item:nth-child(1) { animation-delay: 0.1s; }
.game-item:nth-child(2) { animation-delay: 0.2s; }
.game-item:nth-child(3) { animation-delay: 0.3s; }
.game-item:nth-child(4) { animation-delay: 0.4s; }
.game-item:nth-child(5) { animation-delay: 0.5s; }
.game-item:nth-child(6) { animation-delay: 0.6s; }
.game-item:nth-child(7) { animation-delay: 0.7s; }
.game-item:nth-child(8) { animation-delay: 0.8s; }

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Focus States */
button:focus,
a:focus {
    outline: 2px solid #DC2626;
    outline-offset: 2px;
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .hero {
        background: #000;
    }
    
    .popular-games {
        background: #000;
    }
    
    .btn-primary {
        border: 2px solid white;
    }
}

              .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;
              }

              
                

                