/* 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;
    background-color: #F6F6F6;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Teko', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    text-transform: uppercase;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn--primary {
    background-color: #FFB800;
    color: #000;
}

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

.btn--secondary {
    background-color: transparent;
    color: #333;
    border: 2px solid #FFB800;
}

.btn--secondary:hover {
    background-color: #FFB800;
    color: #000;
}

.btn--large {
    padding: 16px 32px;
    font-size: 16px;
}

.btn__arrow {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.btn:hover .btn__arrow {
    transform: translateX(4px);
}

/* Header */
.header {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    
    z-index: 1000;
    padding: 15px 0;
    
}

.header__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.header__logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 6px;
    color: #252525;
    text-decoration: none;
    font-size: 24px;
    text-transform: uppercase;
    font-weight: 600;
}

.header__logo img {
    width: 50px;
}

.logo {
    height: 40px;
    width: auto;
}

.nav__list {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav__link {
    font-family: 'Teko', sans-serif;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    color: #333;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.nav__link:hover {
    color: #FFB800;
}

.header__actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.social-link {
   background-color: #FEC301;
   display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    aspect-ratio: 1;
}

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

.burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.burger__line {
    width: 22px;
    height: 2px;
    background-color: #333;
    transition: all 0.3s ease;
    margin: 2px 0;
}

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

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

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

/* Hero Section */
.hero {
    padding: 40px 0 80px;
   background-image: url(/wp-content/themes/techfile_lzmiwnpd/assets/images/hero-bcg.webp);
   background-repeat: no-repeat;
   background-size: cover;
   background-position-x: 40%;
    overflow: hidden;
    position: relative;
}

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

.hero__badge {
    display: inline-block;
    background-color: #000;
    color: #FFB800;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero__title {
    font-size: 7rem;
    font-weight: 400;
    color: #000;
    margin-bottom: 24px;
    line-height: 0.9;
}

.hero__title--accent {
    color: #fff;
}

.hero__description {
    font-size: 16px;
    color: #333;
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero__image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero__character {
    max-width: 100%;
    height: auto;
    z-index: 2;
    position: relative;
}

.hero__bg-shapes {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    z-index: 1;
}

/* Games Section */
.games {
    padding: 80px 0;
    background-color: #fff;
}

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

.games__header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
   max-width: 512px;
   width: 100%;
 
}

.games__title {
    font-size: 4rem;
    color: #000;
    line-height: 0.9;
}

.games__description {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

.games__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(244px, 1fr));
    gap: 24px;
    max-width: 512px;
    width: 100%;
}

.game-card {
    
    overflow: hidden;
   
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.game-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.game-card__image {
   
    overflow: hidden;
  
    display: flex;
    align-items: center;
    justify-content: center;
}

.game-card__img {
    width: 100%;
    height: auto;
}

.game-card__content {
    padding: 24px;
}

.game-card__title {
    font-size: 1.25rem;
    color: #000;
    margin-bottom: 12px;
}

.game-card__text {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Features Section */
.features {
    padding: 60px 0;
    background-color: #1a1a1a;
    background-image: url(/wp-content/themes/techfile_lzmiwnpd/assets/images/inf-bcg.webp);
    background-position: center bottom;
    background-size: cover;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.features__grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px;
}

.feature {
    text-align: left;
    width: 100%;
    max-width: 373px;

}

.feature:nth-of-type(even) {
    text-align: right;
}

.feature__icon {
    font-size: 2rem;
   width: 30px;
    display: block;
}

.feature__title {
    font-size: 1.25rem;
    color: #FFB800;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.feature:nth-of-type(even) .feature__title {
    justify-content: flex-end;
}

.feature__text {
    font-size: 14px;
    color: #ccc;
    line-height: 1.6;
}

.features__characters {
   max-width: 600px;
   width: 100%;
   margin: -250px auto -90px;
}

.features__image {
    max-width: 600px;
   width: 100%;
}

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

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

.about__badge {
    display: inline-block;
    background-color: #FFB800;
    color: #000;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.about__title {
    font-size: 5rem;
    color: #000;
    line-height: 0.9;
 
}

.about__description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.about__mission-item {
   
}

.about__mission-icon {
    font-size: 2rem;
    margin-bottom: 16px;
}

.about__mission-title {
    font-size: 1.25rem;
    color: #FFB800;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6;
}

.about__mission-text {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #FFB800 0%, #FFA000 100%);
    text-align: center;
}

.cta__title {
    font-size: 2.5rem;
    color: #000;
    margin-bottom: 24px;
}

.cta__text {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer {
    padding: 40px 0 20px;
    background-color: #252525;
    color: #fff;
}

.footer__content {
    display: flex;
   flex-direction: column;
    gap: 30px;
    margin-bottom: 32px;
}

.footer__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
text-align: right;
font-size: 30px;
font-style: normal;
font-weight: 466;
line-height: 100%; /* 30px */
text-transform: uppercase;
text-decoration: none;
}

.footer__logo-img {
  
    width: 40px;
}

.footer__contact-item {
    font-size: 14px;
    color: #ccc;
    margin-bottom: 8px;
    text-align: center;
}

.footer__label {
    color: #FFB800;
    font-weight: 600;
}

.footer__links {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-bottom: 20px;
}

.footer__link {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer__link:hover {
    color: #FFB800;
}

.footer__copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #666;
    font-size: 12px;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 24px 0;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

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

.cookie-consent__title {
    font-size: 1.5rem;
    color: #000;
    margin-bottom: 8px;
}

.cookie-consent__description {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.cookie-consent__actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.game-item img {
    width: 100%;
    display: block;
    border-radius: 12px;
box-shadow: 12px 12px 0 0 #FE9901;
}

.games-page {
    background-image: url(/wp-content/themes/techfile_lzmiwnpd/assets/images/page-bcg.webp);
    background-size: cover;
    background-position: center;
}

.page-image {
    border-radius: 12px;
max-width: 500px;
width: 100%;
box-shadow: 12px 12px 0 0 #FE9901;
}

/* Responsive Design */
@media (max-width: 1023px) {
    .hero__content {
       display: flex;
       flex-direction: column;
    }
    
    .hero__title {
        
    }
    
    .games__header {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about__content {
        grid-template-columns: 1fr;
    }
    
    .footer__content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .burger {
        display: flex;
    }
    
    .nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        transition: left 0.3s ease;
        z-index: 999;
    }
    
    .nav.active {
        left: 0;
    }
    
    .nav__list {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 100%;
        gap: 32px;
    }
    
    .nav__link {
        font-size: 24px;
    }
    
    .header__actions {
        display: none;
    }
    
    .hero {
        padding: 40px 0 0;
        background-size: 200%;
        background-position: right bottom;
    }
    
    .hero__title {
      font-size: 6rem;
    }

    .hero__image {
        align-self: center;
        max-width: 450px;
        width: 100%;
    }
    
    .hero__actions {
        justify-content: center;
    }

    .games-inner {
        flex-direction: column-reverse;
        align-items: center;
    }

    .features {
        background-repeat: no-repeat;
        background-size: 310%;
    }

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

    .feature {
        max-width: 500px;
        width: 100%;
    }

    .features__characters {
        margin: 0 auto -90px;
        
    }
    
    .games__title,
    .about__title,
    .cta__title {
        font-size: 4rem;
    }
    
    .cookie-consent__content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }
    
    .cookie-consent__actions {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero__title {
        font-size: 4rem;
    }

    .hero__description {
        font-size: 14px;
    }
    
    .hero__actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .games__grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 14px;
    }

    .game-card__content {
        padding: 16px 0 0;
    }
    
    .features__grid {
        grid-template-columns: 1fr;
    }
    
    .footer__links {
        flex-wrap: wrap;
        justify-content: center;
    }
}
              .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;
              }

              
                

                