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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Silkscreen', monospace;
    background-color: #f5f5f5;
    color: #000;
    line-height: 1.4;
    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;
    right: 0;
    background: rgba(240, 240, 240, 0.98);
    backdrop-filter: blur(10px);
    z-index: 10000;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    border-bottom: 3px solid #000;
}

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

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

.cookie-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.cookie-text {
    font-size: 12px;
    margin-bottom: 30px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.btn-accept {
    background: #FF1493;
    color: white;
    border: 3px solid #000;
    padding: 12px 40px;
    font-family: 'Silkscreen', monospace;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-accept:hover {
    background: #FF69B4;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.btn-learn {
    background: transparent;
    color: #000;
    border: 3px solid #000;
    padding: 12px 30px;
    font-family: 'Silkscreen', monospace;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-learn:hover {
    background: #000;
    color: white;
    transform: translateY(-2px);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(245, 245, 245, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;

    transition: top 0.3s ease;
}

.header.with-cookies {
    top: 140px;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #000;
}

.logo-icon {
    width: 32px;
    height: 32px;
    display: block;
}

.logo-text {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 2px;
}

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

.nav-link {
    text-decoration: none;
    color: #000;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1px;
    transition: color 0.2s ease;
}

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

/* Burger Menu */
.burger-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.burger-btn span {
    display: block;
    height: 3px;
    width: 100%;
    background: #000;
    transition: all 0.3s ease;
}

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

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

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

/* Hero Section */
.hero {
    padding: 120px 0 60px;
    background: #f5f5f5;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-image: url(/wp-content/themes/techfile_lmiqbrpu/assets/images/hero-bcg.png);
    background-position: center bottom;
    background-size: cover;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
   
}

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

.hero-title {
    font-size: 124px;
    font-weight: 700;
    line-height: 0.7;
    margin-bottom: 30px;
  text-align: center;
}

.hero-subtitle {
    color: #000;
    font-size: 74px;
}

.btn-play {
    background: #FF1493;
    color: #1E2423;
text-align: center;
display: flex;
align-items: center;
justify-content: center;
width: fit-content;
font-size: 16px;
font-style: normal;
font-weight: 700;
line-height: 120%; /* 19.2px */
text-transform: capitalize;
    border: 3px solid #000;
    padding: 15px 40px;
    font-family: 'Silkscreen', monospace;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    letter-spacing: 1px;
    text-decoration: none;
    position: relative;
    z-index: 3;
}

.btn-play:hover {
    background: #FF69B4;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(255, 20, 147, 0.3);
}

.hero-description p {
    font-size: 12px;
    line-height: 1.6;
    max-width: 400px;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 360px;
    width: 100%;
    align-self: flex-end;
    margin-top: -100px;
}

.hero-char {
    width: 100%;
   display: block;
 
}

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

.hero-info-text {
    font-size: 14px;
    max-width: 330px;
   
  
}

/* Stats Section */
.stats {
    padding: 120px 0;
   
}

.stats-text {
    position: relative;
}

.a-pic {
    position: absolute;
    left: -10%;
    top: -70%;
    max-width: 240px;
    z-index: -1;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: #FF1493;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.stat-label {
    font-size: 12px;
    line-height: 1.4;
    letter-spacing: 1px;
}

/* Vision Section */
.vision {
    padding: 80px 0;
    background: #f5f5f5;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.big-title {
    font-size: 92px;
    font-weight: 600;
    margin-bottom: 60px;
    letter-spacing: 3px;
    text-align: center;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    letter-spacing: 3px;
}

.f-pic {
    position: absolute;
    right: -10%;
    top: -10%;
    max-width: 550px;
}

.decorative-element {
    width: 60px;
    height: 60px;
    background: #32CD32;
    border: 3px solid #000;
    margin: 0 auto 40px;
    position: relative;
}

.decorative-element::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: #32CD32;
    border: 2px solid #000;
    top: -10px;
    right: -10px;
}

.vision-subtitle {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2px;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
}

.service-card {

  
 
 
    transition: all 0.3s ease;
}

.service-card:nth-of-type(2),
.service-card:nth-of-type(3) {
   margin-top: 100px;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.service-icon {
    width: 100%;

    margin: 0 auto 20px;
   border-radius: 5px;
background: #F04F9B;
 padding: 20px;
 min-height: 290px;

}

.service-icon img {
   max-width: 212px;
   width: 100%;
   position: relative;
}

.service-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.service-description {
    font-size: 11px;
    line-height: 1.6;
}



/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: #f5f5f5;
    text-align: center;
    position: relative;
}

.testimonials-layout {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 60px;
    position: relative;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    gap: 30px;
}

.testimonial-left,
.testimonial-right {
   
}

.testimonial-center {
margin-top: 100px;

    position: relative;
    z-index: 2;
}

.testimonial-card {
    max-width: 330px;
    width: 100%;
}

.testimonial-text {
    font-size: 11px;
    line-height: 1.5;
    margin-bottom: 35px;
    text-align: left;
 
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    border: 2px solid #000;
    border-radius: 50%;
    background: #ccc;
    flex-shrink: 0;
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.author-name {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.author-role {
    font-size: 9px;
    opacity: 0.7;
}

/* Quote Marks */
.quote-mark {
    font-size: 48px;
    font-weight: 700;
    color: #FF1493;
    position: absolute;
    line-height: 1;
    font-family: serif;
}

.quote-top-left {
    top: -10px;
    left: 15px;
}

.quote-top-right {
    top: -10px;
    right: 15px;
}

.quote-center-left {
    top: 20px;
    left: -15px;
    font-size: 36px;
    color: #32CD32;
}

.quote-center-right {
    bottom: 80px;
    right: -15px;
    font-size: 36px;
    color: #32CD32;
}





/* FAQ Section */
.faq {
    padding: 80px 0;

}

.faq-list {
    margin-top: 40px;
}

.faq-item {
    display: flex;
    gap: 30px;
    padding: 30px;
    border: 2px solid #000;
    border-radius: 5px;
background: #F04F9B;
margin-bottom: 12px;
}

.faq-number {
    font-size: 24px;
    font-weight: 700;
    color: #FF1493;
    min-width: 60px;
    background: #f9f9f9;
    padding: 15px;
    text-align: center;
    border: 2px solid #000;
    height: fit-content;
}

.faq-content {
    flex: 1;
}

.faq-question {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.faq-answer {
    font-size: 12px;
    line-height: 1.6;
}

/* Footer */
.footer {

    padding: 60px 0 20px;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo .logo-icon {
    background: #FF1493;
}

.footer-logo .logo-text {
    color: #000;
    font-size: 20px;
    font-weight: 700;
}

.footer-info {
    display: flex;
    gap: 60px;
}

.footer-address p,
.footer-contact p {
    font-size: 12px;
    margin-bottom: 5px;
}

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

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

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

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

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

.social-link {
    display: block;
    width: 30px;
    height: 30px;
 
    transition: border-color 0.2s ease;
}

.social-link:hover {
    border-color: #FF1493;
}

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

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

.footer-copyright p {
    font-size: 10px;
    opacity: 0.7;
}

.games {
    padding: 140px 0 100px;
    position: relative;
    z-index: 3;
}

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

.games-item {
    width: 100%;
}

.games-item img {
    width: 100%;
}

.div1 {
    grid-column: span 2 / span 2;
    grid-row: span 2 / span 2;
}

.div2 {
    grid-column-start: 3;
}

.div3 {
    grid-column-start: 3;
    grid-row-start: 2;
}

.div4 {
    grid-column: span 2 / span 2;
    grid-row: span 2 / span 2;
    grid-column-start: 4;
    grid-row-start: 1;
}

.div5 {
    grid-column-start: 6;
    grid-row-start: 1;
}

.div6 {
    grid-column-start: 6;
    grid-row-start: 2;
}

.page-image {
    position: absolute;
    top: 5%;
    left: 3%;
    max-width: 400px;
}

 .games-card {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .game-img {
        max-width: 330px;
        width: 100%;
    }

    .game-img img {
        width: 100%;
    }

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr 250px;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .testimonials-layout {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
    
    .testimonial-left,
    .testimonial-right,
    .testimonial-center {
        width: 100%;
        max-width: 400px;
        margin-top: 0;
    }

    .stat-number {
        font-size: 28px;
    }
    
    .pixel-decoration {
        display: none;
    }
    
    .quote-mark {
        display: none;
    }
}

@media (max-width: 810px) {
    .container {
        padding: 0 15px;
    }
    
    /* Mobile Navigation */
    .burger-btn {
        display: flex;
    }
    
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(245, 245, 245, 0.98);
        backdrop-filter: blur(10px);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: right 0.3s ease;
        z-index: 999;
    }
    
    .nav.active {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .nav-link {
        font-size: 18px;
    }
    
    /* Adjust header with cookies on mobile */
    .header.with-cookies {
        top: 180px;
    }
    
    /* Hero adjustments */
    .hero {
       
        min-height: auto;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 92px;
    }
    
    .hero-char {
        
    }
    
    /* Stats grid */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .stat-number {
        
    }
    
    /* Services grid */
    .services-grid {
       grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
        gap: 50px;
    }

    .service-card:nth-of-type(2),
.service-card:nth-of-type(3) {
   margin-top: 0;
}

.games-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.games-item {
    flex: 0 1 47%;
}

.page-image {
    display: none;
}
   
    /* Testimonials adjustments */
    .testimonials-layout {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    
    .testimonial-left,
    .testimonial-right,
    .testimonial-center {
        width: 100%;
        margin-top: 0;
    }
    
    .testimonial-center {
        border-width: 3px;
    }
    
    .pixel-decoration,
    .quote-mark {
        display: none;
    }

    .big-title {
        font-size: 64px;
        position: relative;
        z-index: 3;
    }

    .f-pic {
       
    }
    
    /* FAQ adjustments */
    .faq-item {
        flex-direction: column;
        gap: 15px;
    }
    
    .faq-number {
        align-self: flex-start;
        min-width: 50px;
    }
    
    /* Footer adjustments */
    .footer-content {
        flex-direction: column;
        gap: 30px;
        align-items: center;
        text-align: center;
    }
    
    .footer-info {
        gap: 30px;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    /* Cookie consent mobile */
    .cookie-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-accept,
    .btn-learn {
        width: 200px;
        padding: 15px 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 54px;
    }

    .hero-subtitle {
        font-size: 36px;
    }

    .hero-info {
        flex-direction: column;
    }

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

    .a-pic {
        top: -40%;
    }

    .big-title {
        font-size: 48px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .cookie-title {
        font-size: 20px;
    }
    
    .cookie-text {
        font-size: 11px;
    }

    .services-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .service-card {
        
    }
    
    .service-title {
        font-size: 14px;
    }
    
    .footer-info {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
}

/* Utility Classes */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Loading Animation for Images */
img {
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
}

/* Smooth animations */
* {
    transition: all 0.2s ease;
}

/* Focus states for accessibility */
a:focus,
button:focus {
    outline: 3px solid #FF1493;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .service-card {
        border-width: 4px;
    }
    
    .btn-play,
    .btn-accept {
        border-width: 4px;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

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

              
                

                