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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #000;
    overflow-x: hidden;
    background: #EEE;
}

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

/* 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;
    opacity: 1;
    visibility: visible;
    transition: all 0.3s ease;
}

.cookie-consent.hidden {
    opacity: 0;
    visibility: hidden;
}

.cookie-content {
    background: #f5f5f5;
    padding: 60px 40px;
    max-width: 600px;
    text-align: center;
    border-radius: 0;
}

.cookie-content h2 {
    font-family: 'Anton', sans-serif;
    font-size: 48px;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 30px;
    color: #000;
}

.cookie-content p {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 40px;
    color: #000;
    text-transform: uppercase;
}

.cookie-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-accept {
    background: #B85450;
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

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

.btn-learn-more {
    background: transparent;
    color: #000;
    border: 2px solid #000;
    padding: 15px 40px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-learn-more:hover {
    background: #000;
    color: white;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
   
    z-index: 1000;
    transition: all 0.3s ease;
}

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

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

.logo a {
 
    font-size: 24px;
    font-weight: 800;
    color: #000;
    text-decoration: none;
    letter-spacing: 1px;
}

.logo img {
    width: 24px;
}

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

.nav-list a {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #000;
    text-decoration: none;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

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

.burger-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.burger-btn span {
    width: 25px;
    height: 3px;
    background: #000;
    margin: 3px 0;
    transition: all 0.3s ease;
}

.burger-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.burger-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero {
    position: relative;
  padding-top: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    width: 100%;
}



.hero-image {
    width: 100%;
    height: 296px;
    margin-bottom: 30px;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.games-text {
    /* position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%); */
    width: 100%;
    display: flex;
    align-items: center;
    gap: 24px;
    justify-content: center;
    z-index: 0;
    background: #EEE;
    padding-bottom: 10px;
}

.games-text span {
    font-family: 'Anton', sans-serif;
    font-size: 40px;
    color: #B32B40;
text-align: center;
leading-trim: both;
text-edge: cap;
font-family: Montserrat;
font-size: 24px;
font-style: normal;
font-weight: 600;
line-height: 120%; /* 28.8px */
text-transform: uppercase;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    text-align: center;
    width: 100%;
}

.hero-title {
    font-family: 'Anton', sans-serif;
    font-size: 21vw;
    font-weight: 400;
    color: #000;
   line-height: 1;
   position: relative;
   width: 100%;

}

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

.hero-title::after {
    
}

/* About Section */
.about {
    padding: 100px 0;

}

.about-head {
    margin-left: auto;
    max-width: 821px;
    width: 100%;
}

.about-content {
    padding-top: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr ;
    gap: 40px;
    align-items: start;
}

.about h2 {
    color: #B32B40;
leading-trim: both;
text-edge: cap;
font-family: Montserrat;
font-size: 32px;
font-style: normal;
font-weight: 600;
line-height: 120%; /* 38.4px */
text-transform: uppercase;
}

.about-head p {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #333;
}

.about-text p {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #333;
}

.about-year {
    position: relative;
    text-align: center;
}

.year {
    font-family: 'Anton', sans-serif;
    font-size: 180px;
    font-weight: 400;
    color: #000;
    letter-spacing: 10px;
    line-height: 1;
    word-break: break-all;
}



.about-img {
   max-width: 510px;
   width: 100%;
   padding-bottom: 30px;
}

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



/* Journey Section */
.journey {
    padding: 100px 0;
   
}

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

.journey-list {
    display: flex;
    flex-direction: column;
   
}

.journey-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    margin-top: -24px;
}

.journey-text {
    position: relative;
}

.journey-item::after {
    content: '';
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    height: 30%;
    background: #EEE;
    border-top: 1px solid #333;
}



.journey-item span {
    font-family: 'Anton', sans-serif;
    font-size: 96px;
    font-weight: 400;
    line-height: 1;
}

.journey-item.begin.journey-item::after {
    display: none;
}

.journey-item.begin span {
    color: #B85450;
}

.journey-arrow {
    font-family: 'Anton', sans-serif;
    font-size: 32px;
    font-weight: 400;
}

.journey-arrow.red {
    color: #B85450;
}

.journey-bottom {
    max-width: 635px;
    width: 100%;
    margin-left: auto;
}

.journey-images {
   width: 100%;
   height: 130px;
   margin-bottom: 30px;
}

.journey-images img {
 width: 100%;
 height: 100%;
 object-fit: cover;
}

.journey-image {
    height: 120px;
    background-size: cover;
    background-position: center;
}

.journey-image-1 {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    grid-column: 1 / -1;
}

.journey-image-2 {
    background: linear-gradient(45deg, #4ecdc4, #2980b9);
}

.journey-image-3 {
    background: linear-gradient(45deg, #e74c3c, #c0392b);
}

.journey-description p {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.6;
   
}

/* Discover Section */
.discover {
    padding: 40px 0 80px;
    
}

.discover-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    align-items: center;
}

.disc-img {
    width: 100%;
    display: block;
    max-width: 965px;
}




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

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 40px;
}

.footer-logo span {
   font-weight: 700;
    font-size: 24px;
    letter-spacing: 1px;
}

.footer-info p {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 10px;
    color: #ccc;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid #333;
}

.footer-copyright p {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    color: #888;
}

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

.footer-links a {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    color: #888;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #B85450;
}

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

.footer-social a {
    font-size: 20px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.footer-social a img {
    width: 36px;
}

.footer-social a:hover {
    transform: scale(1.2);
}

.games-grid {
    display: grid;
     grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(4, 1fr);
    gap: 20px;

}

.game-item {
    width: 100%;
    flex: 0 1 47%;
}

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

.div1 {
    grid-column-start: 3;
}

.div2 {
    grid-column-start: 4;
}

.div3 {
    grid-column-start: 2;
    grid-row-start: 2;
}

.div4 {
    grid-column: span 2 / span 2;
    grid-row: span 2 / span 2;
    grid-column-start: 3;
    grid-row-start: 2;
}

.div5 {
    grid-column-start: 5;
    grid-row-start: 3;
}

.div6 {
    grid-column-start: 3;
    grid-row-start: 4;
}

.div7 {
    grid-column-start: 4;
    grid-row-start: 4;
}

/* Responsive Design */
@media (max-width: 1023px) {
    .hero-title {
        font-size: 80px;
        letter-spacing: 4px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .year {
        font-size: 120px;
    }
    
    .journey-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .discover-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .discover-text h2 {
        font-size: 60px;
    }
}

@media (max-width: 768px) {
    .burger-btn {
        display: flex;
    }
    
    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        border-top: 1px solid #eee;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 0;
        padding: 20px;
    }
    
    .nav-list li {
        border-bottom: 1px solid #eee;
        padding: 15px 0;
    }
    
    .nav-list li:last-child {
        border-bottom: none;
    }
    
    .hero-title {
        font-size: 90px;
        letter-spacing: 2px;
    }
    
    .hero-image {
       
    }
    
    .games-text span {
        font-size: 24px;
    }
    
    .about-text h2 {
        font-size: 36px;
    }

    .about-img {
        max-width: 100%;
    }
    
    .year {
        
    }

    .journey-item {
        margin-top: -16px;
    }
    
    .journey-item span {
        font-size: 48px;
    }
    
    .journey-arrow {
        font-size: 24px;
    }
    
    .discover-text h2 {
        font-size: 48px;
    }
    
    .live-text {
        font-size: 32px;
    }
    
    .epic-text {
        font-size: 24px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-links {
        order: -1;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .cookie-content {
        padding: 40px 20px;
        margin: 20px;
    }
    
    .cookie-content h2 {
        font-size: 32px;
    }
    
    .cookie-content p {
        font-size: 12px;
    }
    
    .cookie-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-title {
        font-size: 60px;
        letter-spacing: 1px;
    }

    .hero-image {
        height: 240px;
    }

    .games-grid {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }
    
   .what-we-do, .journey, .discover {
        padding: 60px 0;
    }

     .journey-item span {
        font-size: 32px;
    }

    .journey-item svg {
        width: 30px;
        height: 30px;
    }

    .journey-item {
        margin-top: -8px;
    }
    
    .journey-images {
        grid-template-columns: 1fr;
    }
    
    .journey-image-1 {
        grid-column: 1;
    }
    
    .discover-images {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
    }
    .year {
        font-size: 84px;
    }
}

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

              
                

                