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

body {
    font-family: 'Lora', serif;
    line-height: 1.6;
    color:rgba(23, 21, 42, 1);
    background: rgba(255, 243, 213, 1);
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 243, 213, 1);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    z-index: 1000;
    max-width: 500px;
    width: 90%;
    text-align: center;
}

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

.cookie-content h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #2c3e50;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.cookie-icon {
    width: 40px;
    height: 40px;
}

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

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

.cookie-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-family: 'Lora', serif;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.accept-btn {
    background: #dc3545;
    color: white;
}

.accept-btn:hover {
    background: #c82333;
}

.learn-btn {
    background: #dc3545;
    color: white;
}

.learn-btn:hover {
    background: #c82333;
}

/* Header */
.header {
    background: rgba(255, 243, 213, 1);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid #e0d4c1;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: unset;
}

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

.logo-text {
    font-family: 'The Nautigal', cursive;
    font-size: 2rem;
    color:rgba(23, 21, 42, 1);
    font-weight: 700;
}

.nav {
    display: flex;
    gap: 40px;
}

.nav a {
    text-decoration: none;
    color:rgba(23, 21, 42, 1);
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.nav a:hover,
.nav a.active {
    color: #dc3545;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 3px;
    background:rgba(23, 21, 42, 1);
    transition: all 0.3s ease;
}


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

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

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

/* Hero Section */
.hero {
    padding: 80px 0 64px;
    background: url(/wp-content/themes/techfile_u4hnyoyi/./images/hero-bg.png) no-repeat center;
    background-size: cover;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    font-weight: 400;
    margin-bottom: 30px;
    color:rgba(23, 21, 42, 1);
    position: relative;
    max-width: 880px;
}

.hero-content h1 .script {
  font-size: 3.5rem;
}
.hero-content p {
    font-size: 1.1rem;
    line-height: 1.2;
    margin-bottom: 40px;
    max-width: 800px;
    color: rgba(23, 21, 42, 1);
    margin-left: auto;
}

.script {
    font-family: 'The Nautigal', cursive;
    font-size: 1.2em;
    font-weight: 700;
}

.red-dot {
    width: 20px;
    height: 20px;
    background: #dc3545;
    border-radius: 50%;
    display: inline-block;
    margin-right: 10px;
    vertical-align: middle;
}

.green-dot {
    width: 20px;
    height: 20px;
    background: #28a745;
    border-radius: 50%;
    display: inline-block;
    margin-left: 10px;
    vertical-align: middle;
}

.cta-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: flex-end;
    width: max-content;
    background: #dc3545;
    color: white;
    padding: 15px 40px;
    border-bottom-right-radius: 60px;
    border-top-right-radius: 60px;
    text-decoration: none;
    margin-left: auto;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

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

/* About Hero */
.about-hero {
    padding: 60px 0;
    background: #fff;
}

.about-hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 30px;
    color:rgba(23, 21, 42, 1);
}

.about-hero p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    max-width: 900px;
    color: rgba(23, 21, 42, 1);
}

/* Who We Are Section */
.who-we-are {
  position: relative;
    padding: 40px 0 60px;
    background: rgba(255, 243, 213, 1);
}

.who-we-are::before,
.audience::before,
.values::before {
  content: '';
  display: block;
  width: 80%;
  height: 70%;
  background: rgba(221, 210, 182, 0.5);
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 0;
  transform: translate(-50%, -50%);
}

.who-we-are .container {
  position: relative;
  z-index: 2;
}


.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.section-header h2 {
    font-size: 60px;
    line-height: 1.2;
    color:rgba(23, 21, 42, 1);
}

.who-we-are .section-header {
  max-width: 770px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
}

.section-icon {
    width: 140px;
    height: 80px;
    object-fit: cover;
}

.section-icon:last-child {
  margin-top: auto;
}

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

.game-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 0;
    align-items: center;
}

.game-img img {
    width: 100%;
    max-width: 140px;
    height: auto;
}

.game-img:nth-child(2) {
  grid-row: 2/3;
  grid-column: 3/4;
}

.game-img:nth-child(3) {
  grid-row: 3/4;
  grid-column: 2/3;
}

.description p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(23, 21, 42, 1);
}

/* Features Section */
.features {
    padding: 100px 0;
    background: url(/wp-content/themes/techfile_u4hnyoyi/./images/bg2.png) no-repeat center;
    background-size: cover;
}

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

.feature-card {
        text-align: left;
    transition: transform 0.3s ease;
}

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

.feature-icon {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    margin: 0 auto 20px;
  
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-card h3 {
    font-size: 30px !important;

    margin-bottom: 6px;
    color:rgba(23, 21, 42, 1);
}

.feature-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

/* Values Section */
.values {
  position: relative;
    padding: 70px 0 100px;
    background: rgba(255, 243, 213, 1);
}

.values .container {
  z-index: 2;
  position: relative;
}

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.value-item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 20px;
    align-items: start;
}

.value-number {
    font-size: 2rem;
    font-weight: 700;
    color: #dc3545;
    width: 30px;
}

.value-item h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color:rgba(23, 21, 42, 1);
}

.value-item p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(23, 21, 42, 1);
}

.value-images {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.value-img {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    object-fit: cover;
}

/* FAQ Section */
.faq {
    padding: 50px 0;
    background: url(/wp-content/themes/techfile_u4hnyoyi/./images/bg3.png) no-repeat center;
    background-size: cover;
}

.faq h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color:rgba(23, 21, 42, 1);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #e0d4c1;
    margin-bottom: 20px;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 0;
    text-align: left;
    font-size: 1.2rem;
    font-family: 'Lora', serif;
    color:rgba(23, 21, 42, 1);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-toggle {
    font-size: 1.5rem;
    color: #28a745;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 20px;
}

.faq-answer p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(117, 117, 117, 1);
    padding: 6px 10px;
    border-left: 2px solid rgba(84, 211, 5, 1);
}

/* Audience Section */
.audience {
  position: relative;
    padding: 60px 0;
    background: rgba(255, 243, 213, 1);
}

.audience .container {
  z-index: 2;
  position: relative;
}

.audience h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color:rgba(23, 21, 42, 1);
}

.audience-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
    color: rgba(23, 21, 42, 1);
}

.game-showcase {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.showcase-img {
    width: 120px;
    height: 120px;
    border-radius: 15px;
    object-fit: cover;
}

/* Game Pages */
.game-hero {
    padding: 60px 0;
    background: #fff;
}

.game-content {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    justify-content: center;
}

.game-image img {
    width: 100%;
    max-width: 240px;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    display: block;
    margin-bottom: 10px;

}

.game-info h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    color:rgba(23, 21, 42, 1);
    text-align: center;
}

.game-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: rgba(23, 21, 42, 1);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.score {
    font-size: 4rem;
    font-weight: 700;
    color: #28a745;
    background: white;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.score-text span {
    font-size: 1.5rem;
    font-weight: 600;
    color:rgba(23, 21, 42, 1);
    display: block;
    margin-bottom: 10px;
}

.review-text h3 {
    font-size: 1.5rem;
    margin: 30px 0 15px;
    color:rgba(23, 21, 42, 1);
}

.review-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: rgba(23, 21, 42, 1);
}

.review-text ul {
    margin: 20px 0;
    padding-left: 30px;
}

.review-text li {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 10px;
    color: #666;
}

/* Footer */
.footer {
    background: #e8dcc6;
    padding: 10px 0 30px;
    border-top: 1px solid #d4c4a8;
}

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

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

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

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

.footer-links a {
    text-decoration: none;
    color:rgba(23, 21, 42, 1);
    font-size: 1rem;
    transition: color 0.3s ease;
}

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

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

.social-link {
    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: 24px;
    height: 24px;
}

.footer-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-top: 20px;
    border-top: 1px solid #d4c4a8;
}

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

.copyright p {
    font-size: 0.9rem;
    color: #666;
}

/* Responsive Design */
@media (max-width: 768px) {
     .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 250px;
        height: 100vh;
        background: rgba(255, 243, 213, 1);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 100px;
        gap: 30px;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        z-index: 1000;
    }
    
    .nav.mobile-active {
        right: 0;
    }

      /* Mobile overlay */
    .mobile-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .mobile-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    .mobile-menu-btn {
        display: flex;
        z-index: 1000;
        position: relative;
    }

    .section-icon {
      height: 42px;
      width: 74px;
    }
    
    .hero-content h1,
    .about-hero h1,
    .game-info h1,
    .hero-content h1 .script {
        font-size: 2.5rem;
    }

    
    
    .content-grid,
    .game-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .value-item {
        grid-template-columns: 1fr;
    }

    .value-content + .value-images {
      margin-left: 80px;
    }
    
    .features-list {
        grid-template-columns: 1fr;
    }
    
    .screenshot-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-info {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .cookie-buttons {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-icon {
      height: 200px;
      aspect-ratio: unset;
    }
    
    .hero-content h1,
    .about-hero h1,
    .game-info h1,
    .hero-content h1 .script {
        font-size: 2rem;
    }
    
    .section-header {

        gap: 20px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .game-showcase {
        flex-direction: column;
        align-items: center;
    }
}/* Reset and Base Styles */

html {
  scroll-behavior: smooth;
}

.policy {
  background: #fff;
  padding-bottom: 60px;
  padding-top: 60px;
}

.policy-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.policy-content li {
  list-style-position: inside;
}


.policy-content a {
  color: inherit;
  text-decoration: unset;
}