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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Bebas Neue', cursive;
    background-color: #1a1a1a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

.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-color: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

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

.cookie-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.cookie-content p {
    font-size: 1rem;
    margin-bottom: 30px;
    line-height: 1.5;
}

.cookie-content a {
    color: #c4d946;
    text-decoration: underline;
}

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

.btn-accept,
.btn-refuse {
    padding: 15px 30px;
    border: none;
    font-family: 'Bebas Neue', cursive;
    font-size: 1.1rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 200px;
}

.btn-accept {
    background-color: #c4d946;
    color: #000;
}

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

.btn-refuse {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-refuse:hover {
    background-color: #fff;
    color: #000;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
   
    z-index: 1000;
    padding: 15px 0;
}

.navbar {
     width: 50%;
}

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

.nav-brand {
 display: flex;
 align-items: center;
 gap: 8px;
 color: #D9E589;
text-align: center;
font-family: "Bebas Neue";
font-size: 24px;
font-style: normal;
font-weight: 400;
line-height: 90%; /* 21.6px */
letter-spacing: 1.92px;
text-decoration: none;
}

.logo {
    height: 24px;
    width: 24px;
}

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

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

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

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

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

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

.nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #c4d946;
}

/* Hero Section */
.hero {
    
    padding-top: 20px;
    display: flex;
    align-items: center;
    padding-bottom: 40px;
}

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

.hero-text h1 {
    font-size: 160px;
    line-height: 1;
    letter-spacing: 3px;
    font-weight: 400;
    position: relative;
    margin-top: 50px;
}

.hero-text h1 img {
    position: absolute;
    max-width: 140px;
}

.h1 {
    right: 25%;
    top: 0;
}

.h2 {
    bottom: 0;
    left: 20%;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Games Section */
.games-section {
    padding: 100px 0;
    background-color: #1a1a1a;
}

.games-section h2 {
    font-size: 3rem;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.games-section p {
    font-size: 1.1rem;
    margin-bottom: 50px;
    max-width: 800px;
    line-height: 1.6;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 40px;
    border-top: 1px solid #FFF;
border-bottom: 1px solid #FFF;
padding: 15px 0;
}

.game-card {
    aspect-ratio: 1;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
    cursor: pointer;
    width: 100%;
    flex: 0 1 31%;
}

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

.game-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Featured Section */
.featured-section {
    padding: 100px 0;
    background-image: url(/wp-content/themes/techfile_hgpuo3wi/assets/images/i-bcg.webp);
    background-repeat: no-repeat;
    background-size: 1274px 530px;
    height: 530px;
}

.featured-section .container {
    height: 100%;
}

.featured-content {
    display: flex;
    align-items: center;
    gap: 60px;
    height: 100%;
}

.featured-text h2 {
    font-size: 4rem;
    line-height: 0.9;
    letter-spacing: 2px;
}

.featured-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background-color: #1a1a1a;
}

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

.feature-item h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    letter-spacing: 1px;
    color: #c4d946;
}

.feature-item p {
    font-size: 1rem;
    line-height: 1.6;
}

/* Discovery Section */
.discovery-section {
    padding: 100px 0;
    background-color: #2a2a2a;
}

.discovery-header {
    padding-bottom: 60px;
}

.discovery-main-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.discovery-content {
    text-align: center;
    margin-bottom: 80px;
}

.discovery-subtitle {
    text-align: center;
    margin-bottom: 40px;
}

.discovery-main-title {
    font-size: 3rem;
    line-height: 1;
    text-align: center;
    letter-spacing: 2px;
}

.discovery-main-content p {
    font-size: 14px;
    max-width: 281px;
    margin: 0 auto;
    line-height: 1.6;
}

.discovery-features {
    display: flex;
   gap: 30px;
    gap: 80px;
    flex-wrap: wrap;
}

.discovery-feature-item {
   
    max-width: 300px;
    width: 100%;
}

.discovery-feature-item:nth-of-type(2) {
  margin-left: auto;
  max-width: 580px;
}

.discovery-item:nth-child(even) .discovery-text {
    order: 2;
}

.discovery-item:nth-child(even) .discovery-image {
    order: 1;
}

.discovery-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    letter-spacing: 1px;
    color: #c4d946;
}

.discovery-text p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.discovery-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background-color: #1a1a1a;
    text-align: center;
}

.play-now-btn {
   

    padding: 20px 60px;
   text-decoration: none;
    font-size: 2rem;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #D9E589;
text-align: center;
font-family: "Bebas Neue";
font-size: 32px;
font-style: normal;
font-weight: 400;
line-height: 120%; /* 38.4px */
text-transform: capitalize;
    border-radius: 40px;
border: 1px solid #D9E589;
width: 100%;
display: flex;
align-items: center;
justify-content: center;
}

.play-now-btn:hover {
    background-color: #b5c73e;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background-color: #0d0d0d;
    padding: 50px 0 20px;
}

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

.footer-text {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-logo h2 {
    font-size: 22vw;
    letter-spacing: 2px;
    color: #c4d946;
    line-height: 1;
    text-align: center;
}

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

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

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

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

.social-link {
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.social-link:hover {
    transform: scale(1.1);
}

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #999;
}

.games-big {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
}

.page-image {
    max-width: 450px;
    width: 100%;
    margin: 50px auto 50px;
    display: block;
}

/* Responsive Design */
@media (max-width: 1023px) {
    .burger-btn {
        display: flex;
    }

    .navbar {
        width: 100%;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: rgba(26, 26, 26, 0.98);
        backdrop-filter: blur(10px);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: left 0.3s ease;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .nav-link {
        font-size: 2rem;
    }

    .hero {
        padding-top: 100px;
    }
    
    .hero-text h1 {
      width: fit-content;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
       
    }
    
    .featured-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .featured-text h2 {
        font-size: 3rem;
    }

    .discovery-main-title {
        font-size: 2rem;
    }
    
    .discovery-item {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .discovery-item:nth-child(even) .discovery-text,
    .discovery-item:nth-child(even) .discovery-image {
        order: initial;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-text h1 {
       
    }
    
    .games-section h2,
    .discovery-content h2 {
        font-size: 2.5rem;
    }

    .game-card {
        flex: 0 1 47%;
    }
    
    .featured-text h2 {
        font-size: 2.5rem;
    }
    
    .discovery-text h3 {
        font-size: 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .games-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 15px;
    }
    
    .cookie-content {
        padding: 30px 20px;
        margin: 20px;
    }
    
    .cookie-content h2 {
        font-size: 2rem;
    }
    
    .cookie-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn-accept,
    .btn-refuse {
        min-width: auto;
        width: 100%;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .footer-links {
        justify-content: center;
        gap: 20px;
    }
    
    .play-now-btn {
        padding: 15px 40px;
        font-size: 1.5rem;
    }
}

@media (max-width: 520px) {
    .hero-text h1 {
        font-size: 120px;
    }
    
    .games-section h2,
    .discovery-main-title h1 {
        font-size: 2rem;
    }

    .discovery-main-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .discovery-left-text,
    .discovery-right-text {
        font-size: 0.8rem;
    }
    
    .discovery-text h3 {
        font-size: 1.4rem;
    }
    
    .discovery-image {
        height: 180px;
    }

    .featured-section {
    padding: 100px 0;
    background-image: url(/wp-content/themes/techfile_hgpuo3wi/assets/images/i-mob.png);
    background-repeat: no-repeat;
    background-size: cover;
    height: auto;
}
    
    .featured-text h2 {
        font-size: 9rem;
        word-break: break-all;
    }
    
    .footer-logo h2 {
        font-size: 2rem;
    }
    
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Loading States */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: #c4d946;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #b5c73e;
}

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

              
                

                