/* 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: #ffffff;
    background-color: #000000;
    overflow-x: hidden;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    border: 2px solid #a4d65e;
    border-radius: 0 0 20px 20px;
    z-index: 1000;
    padding: 20px;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

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

.cookie-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cookie-content h3 {
    font-family: "Bebas Neue", sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.cookie-content p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #cccccc;
}

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

.btn-accept,
.btn-settings {
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: none;
}

.btn-accept {
    background: #a4d65e;
    color: #000000;
}

.btn-accept:hover {
    background: #8bc441;
    transform: translateY(-2px);
}

.btn-settings {
    background: #666666;
    color: #ffffff;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    padding: 15px 0;
    transition: background 0.3s ease;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #FFF;
font-family: "Bebas Neue", sans-serif;
font-size: 50px;
font-style: normal;
font-weight: 500;
line-height: 120%; /* 60px */
text-decoration: none;
}

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

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

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

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

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #a4d65e;
    transition: width 0.3s ease;
}

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

.burger-menu {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 4px;
}

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

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

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

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    position: relative;
    overflow: hidden;
    padding-top: 120px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(164, 214, 94, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    display: flex;
    justify-content: space-between;
    gap: 5px;
    align-items: center;
    position: relative;
    z-index: 2;
    margin-top: -200px;
}

.hero-title {
    font-family: "Bebas Neue", sans-serif;
    font-size: 20vw;
    font-weight: 900;
    line-height: 0.9;
    padding: 90px 0;
    position: relative;
    letter-spacing: -2px;
    text-align: center;
    margin: 0 auto;
    width: fit-content;
}

.hero-title span {
    color: #B8E33E;
}

.hero-title .ht-l {
    content: "";
    position: absolute;
    display: block;
    width: 18%;
    
 max-width: 173px;
 aspect-ratio: 173 / 290;
   top: 0;
   left: -4%;

}

.hero-title .ht-r {
    content: "";
    position: absolute;
     display: block;
     width: 18%;

     max-width: 163px;
aspect-ratio: 163px / 267;
    bottom: 0;
    right: -4%;
}

.object {
    width: 71.5px;
height: 77px;
}


.hero-text {
    max-width: 280px;
    width: 100%;
}

.hero-subtitle h2 {
    font-family: 'Inter', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
   
    margin-bottom: 20px;
    line-height: 1.3;
}


.hero-subtitle h2 span {
 color: #a4d65e;
}

.hero-text p {
    font-size: 14px;
    color: #cccccc;
    margin-bottom: 30px;
    line-height: 1.6;
}

.btn-play {
    background-image: url(/wp-content/themes/techfile_4ns1js1k/assets/images/button.webp);
    background-size: 100% 100%;
    color: #000000;
    border: none;
    padding: 15px 35px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    max-width: 203px;
    width: 100%;
    text-align: center;
}

.btn-play:hover {
    background: #8bc441;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(164, 214, 94, 0.3);
}

.hero-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-3d-object {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 98%;
  transform: translate(-50%, -50%);
   z-index: -1;
}



.hero-info {
    max-width: 300px;
    text-align: center;
}

.hero-info p {
    font-size: 0.9rem;
    color: #888888;
    line-height: 1.5;
}

.hero-image {
    max-width: 329px;
    width: 100%;
    position: relative;
}

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

.hero-pic {
    width: 100%;
    margin-top: -17%;
}

/* Standouts Section */
.standouts {
    padding: 120px 0 100px;
    background-image: url(/wp-content/themes/techfile_4ns1js1k/assets/images/a-bcg.webp);
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: cover;
    color: #000000;
}

.section-title {
    font-family: "Bebas Neue", sans-serif;
    font-size: 12vw;
    font-weight: 900;
    text-align: center;
    margin-bottom: 50px;
    letter-spacing: -2px;
}

.section-title span {
    color: #B8E33E;
}

.standouts-content {
    max-width: 800px;
    margin: 160px auto;
  
}

.standouts-content p {
    font-size: 1.1rem;
    line-height: 1.4;
    color: #fff;
    background: rgba(0, 0, 0, 0.20);
stroke-width: 0.628px;
stroke: rgba(0, 0, 0, 0.20);
backdrop-filter: blur(7.063953399658203px);
    padding: 60px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Games Categories */
.games-categories {
    padding: 100px 0;
   background-image: url(/wp-content/themes/techfile_4ns1js1k/assets/images/cat-bcg.webp);
   background-position: center;
   background-size: cover;
    position: relative;
}

.games-categories::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 70%, rgba(164, 214, 94, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.games-header {
   display: flex;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
    gap: 30px;
    align-items: flex-end;
}

.games-title {
    font-family: "Bebas Neue", sans-serif;
    font-size: 12vw;
    font-weight: 900;
    margin-bottom: 30px;
    letter-spacing: -2px;
    line-height: 1;
}

.games-title span {
    color: #a4d65e;
}

.games-header p {
    font-size: 1.1rem;
    color: #cccccc;
    max-width: 800px;
    line-height: 1.6;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    position: relative;
    z-index: 2;
}

.game-category {
    
    transition: all 0.3s ease;
    
}

.game-category:hover {
    
}

.game-category h3 {
    font-family: "Bebas Neue", sans-serif;
    font-size: 72px;
    font-weight: 900;
text-align: center;
    letter-spacing: -1px;
    line-height: 1;
}

.game-category p {
    font-size: 0.95rem;
    line-height: 1.4;
   background: rgba(255, 255, 255, 0.2);
stroke-width: 0.628px;
border: 1px rgba(255, 255, 255, 0.6) solid;
backdrop-filter: blur(7.063953399658203px);
padding: 20px;
margin-top: -26px;
}

/* Help Section */
.help-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    position: relative;
}

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

.help-section h2 {
    font-family: "Bebas Neue", sans-serif;
    font-size: 12vw;
    font-weight: 900;
    letter-spacing: -1px;
    line-height: 1;
    width: fit-content;
}

.help-section h2 span {
    color: #B8E33E;
}

.help-text p {
    font-size: 16px;
    color: #cccccc;
    line-height: 1.4;
}

.help-text a {
    color: #fff;
}

.btn-contact {
    background: transparent;
    color: #a4d65e;
    border: 2px solid #a4d65e;
    padding: 15px 35px;
    border-radius: 25px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.btn-contact:hover {
    background: #a4d65e;
    color: #000000;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(164, 214, 94, 0.3);
}

.help-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.help-cubes {
    width: 200px;
    height: 200px;
    position: relative;
}

.help-cubes::before,
.help-cubes::after {
    content: '';
    position: absolute;
    background: #a4d65e;
    border-radius: 10px;
}

.help-cubes::before {
    width: 80px;
    height: 80px;
    top: 0;
    right: 0;
    opacity: 0.8;
}

.help-cubes::after {
    width: 60px;
    height: 60px;
    bottom: 20px;
    left: 0;
    opacity: 0.6;
}

/* Footer */
.footer {
    background: #000000;
    padding: 60px 0 30px;
    border-top: 1px solid #333333;
}

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

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

.footer-info p {
    font-size: 0.9rem;
    color: #888888;
    margin-bottom: 5px;
}

.footer-links {
    display: flex;
 justify-content: space-around;
    gap: 20px;
    padding-bottom: 30px;
}

.footer-links a {
    color: #888888;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

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

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
    cursor: pointer;
}

.footer-social a img {
    width: 100%;
}

.social-icon.twitter {
    background: #1da1f2;
}

.social-icon.facebook {
    background: #1877f2;
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(164, 214, 94, 0.3);
}

.footer-bottom {
    display: flex;
    justify-content: center;
    gap: 40px;align-items: center;
    padding-top: 30px;
    border-top: 1px solid #333333;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: #666666;
}

.page-image {
    margin-top: 60px;
    width: 100%;
    height: 300px;
}

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

/* Responsive Design */
@media (max-width: 1023px) {
    .hero-content {
        flex-direction: column;
        gap: 40px;
     
    }
    
    .hero-title {
        font-size: 26vw;
    }
    
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .help-content {
        grid-template-columns: 1fr;
        gap: 40px;
     
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        padding: 30px 0;
    }
    
    .nav.active {
        transform: translateX(0);
    }
    
    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .burger-menu {
        display: flex;
    }

    .hero-content {
        margin-top: 0;
    }
    
    .hero-title {
       padding: 30px 0;
    }

    .hero-text {
        max-width: 500px;
    }

    .hero-image {
        max-width: 208px;
        order: 3;
    }
    
    .section-title {
       
    }

    .standouts-content {
        margin-top: 60px;
    }
    
    .games-title {
        font-size: 2.5rem;
    }

    .games-header {
        flex-direction: column;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .help-text h2 {
        font-size: 2.5rem;
    }

    .help-content {
        flex-direction: column;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
        flex-direction: column;
    }

    .footer-links {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-social {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column-reverse;
    }
    
    .cookie-content h3 {
        font-size: 1.5rem;
    }
    
    .cookie-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-accept,
    .btn-settings {
        width: 200px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        
    }
    
    .hero-subtitle h2 {
        font-size: 1.5rem;
    }
    
    .section-title {
        
    }
    
    .games-title {
       
    }
    
    .help-text h2 {
       
    }
    
    .hero-3d-object {
        width: 250px;
        height: 320px;
    }
    
    .game-category {
        padding: 30px 20px;
    }
}

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

              
                

                