/* ========================================
   GLOBAL STYLES & RESET
======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-primary: #FF6B35;
    --color-dark: #181818;
    --color-darker: #0d0d0d;
    --color-white: #ffffff;
    --color-gray: #8a8a8a;
    --color-light-gray: #f5f5f5;
    --font-primary: "Lato", sans-serif;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-dark);
    color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   BUTTONS
======================================== */
.btn {
    display: inline-block;
    padding: 14px 35px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 5px;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--color-white);
    color: var(--color-dark);
}

.btn-primary:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-2px);
}

.btn-orange {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 16px 45px;
    font-size: 16px;
}

.btn-orange:hover {
    background-color: #ff5520;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

/* ========================================
   COOKIE CONSENT
======================================== */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(13, 13, 13, 0.98);
    border-top: 2px solid var(--color-primary);
    padding: 20px;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-white);
}

.cookie-content a {
    color: var(--color-primary);
    text-decoration: underline;
}

.cookie-content a:hover {
    color: #ff5520;
}

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

.cookie-btn {
    padding: 12px 30px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 5px;
    transition: var(--transition);
    white-space: nowrap;
}

.cookie-btn.accept {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.cookie-btn.accept:hover {
    background-color: #ff5520;
}

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

.cookie-btn.decline:hover {
    background-color: var(--color-white);
    color: var(--color-dark);
}

/* ========================================
   HEADER
======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
  
 background-color: #181818;
    z-index: 1000;
    padding: 20px 0;
  
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 20px;
    letter-spacing: 1px;
}

.logo-icon {
    font-size: 24px;
}

.nav-list {
    display: flex;
    gap: 45px;
}

.nav-link {
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 30px;
    height: 25px;
    cursor: pointer;
}

.burger-menu span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--color-white);
    transition: var(--transition);
    border-radius: 2px;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translateY(10px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-10px);
}

/* ========================================
   HERO SECTION
======================================== */
.hero {
    padding: 150px 0 80px;
    position: relative;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 50px;
  
}

.hero-title {
    font-size: 6vw;
    font-weight: 400;
    line-height: 1;
    letter-spacing: -1px;
    text-transform: uppercase;
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.colorful-text {
    background: linear-gradient(90deg, #FF6B35, #F7931E, #FBB040);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.arrow-icon {
    display: inline-block;
    color: var(--color-primary);
    font-size: 0.8em;
    margin-left: 20px;
}

.hero-description {
    font-size: 14px;
    line-height: 1.8;
    max-width: 200px;
    letter-spacing: 0.5px;
}

.hero-sidebar {
   width: 100%;
   gap: 30px;
   display: flex;
   justify-content: space-between;
}

.sidebar-text {
    font-size: 14px;
    line-height: 1.8;
    letter-spacing: 0.5px;
}

.hero-characters {
    margin: 0 -20px;
}

.characters-img {
    width: 100%;
    height: auto;
}

/* ========================================
   ABOUT SECTION
======================================== */
.about {
    padding: 100px 0;
  background: #FFF;
  color: #181818;
}

.about-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 80px;
    margin-bottom: 60px;
}

.about-text {
    position: relative;
    display: flex;
}

.section-title {
    font-size: clamp(35px, 5vw, 65px);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -1px;
    text-transform: uppercase;
}

.decorative-arrow {
    display: inline-block;
    font-size: 60px;
    color: var(--color-primary);
    margin-left: 30px;
    line-height: 1;
}

.about-description {
    font-size: 14px;
    line-height: 1.8;
    letter-spacing: 0.5px;
    color: #181818;
}

.about-image {
   
}

.crowd-img {
    width: 100%;
    height: auto;
}

/* ========================================
   FEATURES SECTION
======================================== */
.features {
    padding: 100px 0;
     background: #FFF;
  color: #181818;
}

.features-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 80px;
    margin-bottom: 80px;
}

.features-intro {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.decorative-arrow.down {
    font-size: 50px;
    margin: 0;
}

.features-description {
    font-size: 14px;
    line-height: 1.8;
    letter-spacing: 0.5px;
    max-width: 450px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    border-radius: 20px;
background: #EDEDED;
    color: var(--color-dark);
    padding: 40px;
    border-radius: 10px;
    transition: var(--transition);
    height: 400px;
    position: relative;
    overflow: hidden;
}

.feature-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    left: 0;
    top: 0;
    object-position: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-card.community {
    background-color: var(--color-primary);
    color: var(--color-white);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.feature-title {
    font-size: 24px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    position: relative;
    z-index: 3;
}

.feature-text {
    font-size: 12px;
    line-height: 1.8;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 3;
}

.feature-image {
    margin-top: 30px;
}

.feature-img {
    width: 100%;
    
}

/* ========================================
   CTA SECTION
======================================== */
.cta {
    padding: 100px 0;
    background-color: var(--color-darker);
}

.cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 80px;
    margin-bottom: 60px;
}

.cta-title {
    font-size: clamp(40px, 5.5vw, 70px);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -1px;
    text-transform: uppercase;
}

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

.cta-text {
    font-size: 13px;
    line-height: 1.8;
    letter-spacing: 0.5px;
    color: var(--color-gray);
}

.cta-image {
  
   
}

.cta-img {
    width: 100%;
    height: auto;
}

/* ========================================
   GAMES SECTION
======================================== */
.games {
    padding: 100px 0;
    background-color: var(--color-dark);
}

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

.game-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 3/4;
    background-color: var(--color-darker);
}

.game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.8));
    opacity: 0;
    transition: var(--transition);
}

.game-card:hover::before {
    opacity: 1;
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.game-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.game-card:hover .game-img {
    transform: scale(1.1);
}

/* ========================================
   FOOTER
======================================== */
.footer {
    background-color: var(--color-darker);
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

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

.social-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-primary);
    border-radius: 50%;
    transition: var(--transition);
}

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

.social-link:hover {
    background-color: #ff5520;
    transform: translateY(-5px);
}

.footer-links {
    display: flex;
    gap: 80px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-link {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--color-gray);
    transition: var(--transition);
}

.footer-link:hover {
    color: var(--color-primary);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.copyright {
    font-size: 12px;
    color: var(--color-gray);
    letter-spacing: 0.5px;
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */

/* Tablet */
@media (max-width: 1023px) {
    .hero-content {
        flex-direction: column;
    }
    
    .hero-sidebar {
        max-width: 100%;
    }
    
    .about-content {
        flex-direction: column;
        gap: 50px;
    }
    
    .features-header {
        flex-direction: column;
        gap: 50px;
    }
    
    .cta-content {
        flex-direction: column;
        gap: 50px;
    }
    
    .footer-links {
        gap: 40px;
    }
    
    .games-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    /* Header Mobile */
    .header {
        padding: 15px 0;
    }
    
    .nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background-color: rgba(26, 26, 26, 0.98);
        backdrop-filter: blur(10px);
        padding: 30px 20px;
        transform: translateX(-100%);
        transition: var(--transition);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav.active {
        transform: translateX(0);
    }
    
    .nav-list {
        flex-direction: column;
        gap: 25px;
    }
    
    .nav-link {
        font-size: 18px;
    }
    
    .header-content .btn-primary {
        display: none;
    }
    
    .burger-menu {
        display: flex;
    }
    
    /* Hero Mobile */
    .hero {
      
    }
    
    .hero-title {
        font-size: 5.5vw;
        justify-content: center;
    }
    
    /* Sections Mobile */
    .section-title {
        font-size: 35px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 30px;
    }
    
    .games-grid {
       
        gap: 15px;
    }
    
    /* Cookie Mobile */
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }
    
    .cookie-btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
       font-size: 6.5vw;
    }

    .hero-sidebar {
        flex-direction: column;
    }

    .about-image, .cta-image {
        height: 300px;
        overflow: hidden;
        border-radius: 20px;
    }

    .about-image img {
        height: 100%;
        object-fit: cover;
    }

    .cta-image img {
        height: 100%;
        object-fit: cover;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .cta-title {
        font-size: 35px;
    }
    
    .decorative-arrow {
        font-size: 40px;
        margin-left: 15px;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 13px;
    }
    
    .btn-orange {
        padding: 14px 35px;
        font-size: 14px;
    }
    
    .games-grid {
       grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    }
}

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

              
                

                