/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Catamaran', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

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

/* ===== BUTTONS ===== */
.btn-primary {
    background-color: #000;
    color: #fff;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-family: 'Catamaran', sans-serif;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
}

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

/* ===== COOKIE CONSENT ===== */
.cookie-consent {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
}

.cookie-consent.hidden {
    display: none;
}

.cookie-content {
    background-color: #fff;
    padding: 40px;
    border-radius: 20px;
    max-width: 500px;
    width: 100%;
    text-align: left;
}

.cookie-content h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000;
}

.cookie-content p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 30px;
    color: #666;
}

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

.btn-accept {
    background-color: #7CB342;
    color: #fff;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-family: 'Catamaran', sans-serif;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

.btn-learn-more:hover {
    background-color: #333;
    color: #fff;
}

/* ===== HEADER ===== */
.header {
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

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

.logo {
    color: #080B04;
text-align: center;
font-family: Catamaran;
font-size: 24px;
font-style: normal;
font-weight: 800;
line-height: 90%; /* 21.6px */
letter-spacing: 1.92px;
text-transform: capitalize;
display: flex;
align-items: center;
gap: 6px;
text-decoration: none;
}

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

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

.nav-list a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
}

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

.burger-menu {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 25px;
    justify-content: space-between;
}

.burger-menu span {
    width: 100%;
    height: 3px;
    background-color: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

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

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

/* ===== MOBILE MENU ===== */
.mobile-menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: #fff;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
    transform: translateY(0);
}

.mobile-nav ul {
    list-style: none;
    padding: 20px;
}

.mobile-nav ul li {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.mobile-nav ul li:last-child {
    border-bottom: none;
}

.mobile-nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 18px;
}

/* ===== HERO SECTION ===== */
.hero {
    padding: 120px 0 80px;
   overflow: hidden;
   position: relative;
}

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

.hero-text {
    width: 50%;
}

.hero-text h1 {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #000;
}

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

.hero-image {
    text-align: center;
    position: absolute;
    right: -5%;
    max-width: 489px;
    width: 100%;
    top: 45%;
    transform: translateY(-50%);
    z-index: 3;
}

.hero-image img {
    max-width: 489px;
    width: 100%;
    height: auto;
}

/* ===== FEATURES SECTION ===== */
.features {
    padding: 80px 0;
    background-color: #fff;
}

.features-grid {
    padding-top: 80px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    padding: 30px 24px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card.green {
    background-color: #7CB342;
    color: #fff;
}

.feature-card.orange {
    background-color: #FF6B35;
    color: #fff;
}

.feature-card.blue {
    background-color: #4A90E2;
    color: #fff;
}

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

.feature-icon img {
    width: 100%;
}

.feature-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
}

.feature-card p {
    font-size: 16px;
    line-height: 1.5;
}

/* ===== MISSION SECTION ===== */
.mission {
    padding: 80px 0;
    background-image: url(/wp-content/themes/techfile_txm5qext/assets/images/a-bcg.webp);
    background-repeat: no-repeat;
    background-size: contain;
    background-position-x: 60px;
    background-position-y: center;
}

.mission h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #000;
}

.mission-content {
    display: flex;
    flex-direction: column;
    gap: 60px;
 
}

.mission-images {
    display: flex;
   justify-content: space-between;
    gap: 20px;
   
}

.mission-image-left {
    max-width: 345px;
    width: 100%;
}

.mission-image-right {
    max-width: 493px;
    width: 100%;
    margin-top: -80px;
}

.mission-image-left img,
.mission-image-right img {
    width: 100%;
    
  
}

.mission-text {
    max-width: 711px;
    width: 65%;
    margin-left: auto;
    margin-top: -17%;
}

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

.mission-stats {
    display: flex;
    align-items: center;
    gap: 15px;
}

.avatars {
    display: flex;
   max-width: 108px;
   width: 100%;
}

.avatars img {
  width: 100%;
   
}

.avatars img:first-child {
    margin-left: 0;
}

.stats-number {
    font-size: 18px;
    font-weight: 700;
    color: #000;
}

/* ===== GENRES SECTION ===== */
.genres {
    padding: 80px 0;
    background-color: #fff;
    text-align: center;
}

.genres h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000;
}

.genres p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 50px;
    color: #666;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.genres-showcase {
    margin-top: 50px;
    width: 100%;
}

.genres-showcase img {
    width: 100%;
  
    height: auto;
 
    margin: 0 auto;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.testimonials h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000;
}

.testimonials > p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 50px;
    color: #666;
    max-width: 800px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-content p {
    font-size: 16px;
    line-height: 1.5;
    color: #333;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.testimonial-author strong {
    display: block;
    font-weight: 600;
    color: #000;
}

.testimonial-author span {
    font-size: 14px;
    color: #666;
}

/* ===== CTA SECTION ===== */
.cta {
    padding: 80px 0;
    background-color: #7CB342;
    color: #fff;
}

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

.cta-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 40px;
}

.btn-cta {
    background-color: #fff;
    color: #7CB342;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-family: 'Catamaran', sans-serif;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

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

/* ===== FOOTER ===== */
.footer {
   
    padding: 60px 0 40px;
}

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

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

.footer-contact {
    text-align: right;
}

.footer-contact p {
    margin-bottom: 8px;
    color: #000;
    font-size: 14px;
}

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

.footer-copyright p {
    font-size: 14px;
    color: #000;
    margin: 0;
}

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

.footer-links a {
    color: #000;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

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

.footer-social a img {
    width: 24px;
    height: 24px;
   
    transition: filter 0.3s ease;
}

.footer-social a:hover img {
    filter: invert(1) sepia(1) saturate(5) hue-rotate(87deg);
}

.games-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: space-between;
    padding-top: 40px;
}

.feature-card {
    width: 100%;
    text-decoration: none;
    flex: 0 1 32%;
}

.game-card {
    padding: 120px 0 80px;
}

.game-inner {
    display: flex;
    gap: 30px;
    justify-content: space-between;
}

.game-image {
    max-width: 354px;
    margin-left: auto;
}

.game-content {
    max-width: 371px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablet */
@media (max-width: 1023px) {
    .burger-menu {
        display: flex;
    }

    .nav {
        display: none;
    }

    .hero-content {
        gap: 40px;
    }

    .hero-text h1 {
        font-size: 40px;
    }

    .mission-content {
        gap: 40px;
    }

    .mission-images {
        
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-main {
        flex-direction: column;
        gap: 30px;
        text-align: center;
        align-items: center;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }
}

/* Mobile */
@media (max-width: 810px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 120px 0 60px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .hero-image {
        display: none;
    }

    .hero-text {
        width: 100%;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-text h1 {
        font-size: 42px;
    }

    .hero-text p {
        font-size: 16px;
    }

    .features {
        padding: 60px 0;
    }

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

    .feature-card {
        padding: 30px;
        flex: 0 1 48%;
    }

    .mission {
        padding: 60px 0;
    }

    .mission-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .mission-images {
        grid-template-columns: 1fr;
        height: auto;
        gap: 15px;
    }

    .mission-image-left {
        grid-row: auto;
    }

    .mission-text {
        margin-left: 0;
        margin-top: 0;
        width: 100%;
    }

    .genres {
        padding: 60px 0;
    }

    .genres h2,
    .mission h2,
    .testimonials h2,
    .cta-content h2 {
        font-size: 28px;
    }

    .testimonials {
        padding: 60px 0;
    }

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

    .testimonial-card {
        padding: 25px;
    }

    .cta {
        padding: 60px 0;
    }

    .cta-content {
        text-align: left;
    }

    .cta-content h2 {
        font-size: 28px;
    }

    .footer {
        padding: 40px 0 20px;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-main {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .cookie-content {
        padding: 30px;
        margin: 20px;
    }

    .cookie-content h3 {
        font-size: 24px;
    }

    .cookie-buttons {
        flex-direction: column;
    }
    .game-inner {
        flex-direction: column;
        align-items: center;
    }

    .game-image {
        margin-left: 0;
    }
}

@media (max-width: 550px) {
    .hero-text h1 {
        font-size: 32px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        padding: 25px;
    }

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

    .mission-image-right {
        margin-top: 0;
    }

    .genres {
        overflow: hidden;
    }

    .genres-showcase {
        display: flex;
        align-items: center;
        justify-content: center;
    }

  .genres-showcase img {
    width: auto;
    max-width: 140%;
  }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .cta-content h2 {
        font-size: 24px;
    }

    .cookie-content {
        padding: 20px;
        margin: 15px;
    }

    .cookie-content h3 {
        font-size: 20px;
    }

    .games-grid {
        flex-direction: column;
        align-items: 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;
              }

              
                

                