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

:root {
    --primary-color: #a3ff00;
    --dark-bg: #161D1D;
    --dark-secondary: #1a1f20;
    --dark-tertiary: #0f1415;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --font-heading: 'Bebas Neue', sans-serif;
    --font-body: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
}

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

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

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

a {
    text-decoration: none;
    color: inherit;
}

h2 {
    font-family: var(--font-heading);
    font-size: 32px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: var(--font-heading);
    font-size: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #000;
    font-weight: bold;
}

.btn-primary:hover {
    background-color: #8ee600;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(163, 255, 0, 0.3);
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 14, 15, 0.98);
    backdrop-filter: blur(10px);
    padding: 20px;
    z-index: 10000;
    border-top: 2px solid var(--primary-color);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.5;
}

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

.cookie-btn {
    padding: 10px 24px;
    font-family: var(--font-heading);
    font-size: 14px;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
    text-transform: uppercase;
}

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

.cookie-btn.decline {
    background-color: transparent;
    color: var(--text-primary);
    border: 1px solid var(--text-secondary);
}

.cookie-btn:hover {
    transform: translateY(-2px);
}

.cookie-link {
    color: var(--primary-color);
    font-size: 14px;
    text-decoration: underline;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 14, 15, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(163, 255, 0, 0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 18px;
    letter-spacing: 1px;
}

.logo img {
   width: 40px;
}

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

.nav-link {
    font-family: var(--font-heading);
    font-size: 14px;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

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

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

.burger-btn span {
    width: 25px;
    height: 3px;
    background-color: var(--text-primary);
    transition: all 0.3s ease;
    border-radius: 2px;
}

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

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

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

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
    background-image: url(/wp-content/themes/techfile_3ocyxwfd/assets/images/hero.webp);
    background-position: center;
    background-size: cover;
}

.hero-bg {
    /* position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(135deg, rgba(163, 255, 0, 0.1) 0%, transparent 50%);
    pointer-events: none; */
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 72px;
    line-height: 1;
    margin-bottom: 24px;
    letter-spacing: 2px;
}

.hero-description {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 32px;
}

.hero-image {
    position: relative;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* About Section */
.about {
    padding: 100px 0;
    background-color: var(--dark-tertiary);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    align-items: center;
    gap: 80px;
}

.about-image {
    
   
}

.section-title {
    font-family: var(--font-heading);
    font-size: 48px;
    letter-spacing: 2px;
    margin-bottom: 24px;
    line-height: 1.1;
}

.about-description {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 32px;
}

/* Gaming Highlights */
.highlights {
    padding: 100px 0;
    text-align: center;
}

.highlights-subtitle {
    color: var(--text-secondary);
    font-size: 16px;
    margin-bottom: 60px;
    line-height: 1.6;
}

.highlights-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 30px;
}

.highlight-card {
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.highlight-card:hover {
    transform: translateY(-10px);
}

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

/* Popular Games */
.popular {
    padding: 60px 0;
    background-color: var(--dark-tertiary);
    position: relative;
    overflow: hidden;
    background-image: url(/wp-content/themes/techfile_3ocyxwfd/assets/images/ibcg.webp);
    background-position: left;
    background-size: cover;
}

.popular-content {
    display: grid;
    grid-template-columns: 0.6fr 1.4fr;
    gap: 30px;
    align-items: center;
}

.popular-character {
    position: relative;
    animation: float 4s ease-in-out infinite;
}

.popular-description {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 26px;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.game-card {
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
    cursor: pointer;
    aspect-ratio: 1;
}

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

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

/* Game World Section */
.game-world {
    padding: 100px 0;
}

.game-world-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
}

.game-world-image {
    position: relative;
}

.game-world-description {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 32px;
}

/* Adventure Section */
.adventure {
    padding: 100px 0;
    background-color: var(--dark-tertiary);
    text-align: center;
}

.adventure-subtitle {
    color: var(--text-secondary);
    font-size: 16px;
    margin-bottom: 60px;
    line-height: 1.6;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.adventure-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.adventure-card {
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
    cursor: pointer;
    aspect-ratio: 1;
}

.adventure-card:hover {
    transform: translateY(-10px) scale(1.05);
}

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

/* Footer */
.footer {
    padding: 40px 0 30px;
    background-color: var(--dark-bg);
    position: relative;
    overflow: hidden;
    background-image: url(/wp-content/themes/techfile_3ocyxwfd/assets/images/footer.webp);
    background-size: cover;
    background-position: center;
}

.footer-content {
    text-align: center;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 20px;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

.footer-logo img {
    width: 40px;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.footer-link {
    font-family: var(--font-heading);
    font-size: 13px;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

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

.footer-contact {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 30px;
}

.footer-contact p {
    margin-bottom: 8px;
}

.footer-contact a {
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #8ee600;
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid rgba(163, 255, 0, 0.1);
    color: var(--text-secondary);
    font-size: 13px;
    text-align: center;
}

.footer-character {
    position: absolute;
    bottom: 20px;
    right: 5%;
    width: 200px;
    opacity: 0.6;
}

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

.soc-link {
    width: 40px;
}

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

.g-inner {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 30px;
}

.g-content {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
    max-width: 774px;
    width: 100%;
    text-align: left;
    
}

.g-content p {
    font-size: 14px;
}

.g-center {
    padding-top: 50px;
   display: flex;
    flex-direction: column;
    align-items: center; 
    text-align: center;
    gap: 20px;
}

.page-images {
     display: flex;
    align-items: center;
    gap: 30px;
}

.page-images img {
    width: 100%;
}

/* Tablet Styles */
@media (max-width: 1023px) {
    .burger-btn {
        display: flex;
        z-index: 1001;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: rgba(10, 14, 15, 0.98);
        backdrop-filter: blur(10px);
        padding: 100px 40px 40px;
        transition: right 0.4s ease;
        border-left: 2px solid var(--primary-color);
    }

    .nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 30px;
    }

    .nav-link {
        font-size: 18px;
    }

    .hero-content {
        grid-template-columns: 1fr;
       
    }

    .hero-title {
        
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .popular-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .games-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .game-world-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .adventure-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-title {
        font-size: 40px;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .g-inner,
    .page-images {
        flex-direction: column;
    }
    .hero-title {
      
    }

    .hero-description {
        font-size: 14px;
    }

    .section-title {
        font-size: 32px;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .games-grid {
        
        gap: 15px;
    }

    

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

    .footer-character {
        width: 120px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-content p {
        min-width: auto;
    }

    .cookie-buttons {
        justify-content: center;
    }

    .nav {
        width: 100%;
        padding: 100px 30px 30px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 0 60px;
    }

    .hero-title {
        font-size: 48px;
    }

    .section-title {
        font-size: 28px;
    }

    .about, .highlights, .popular, .game-world, .adventure {
        padding: 60px 0;
    }

    .games-grid {
        
    }

    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }

    .footer {
        padding: 60px 0 30px;
    }
}

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

              
                

                