* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lexend', sans-serif;
    line-height: 1.6;
    color: rgba(30, 36, 35, 1);
    background-color: rgba(241, 241, 241, 1);
    background-image: url(/wp-content/themes/techfile_kxblnyrb/./images/bg.png);
    background-size: contain;
    background-position: center 40%;
    background-repeat: no-repeat;
    overflow-x: hidden;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 2rem;
    z-index: 1000;
    border-bottom: 1px solid #e0e0e0;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.cookie-content h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 1rem;
    text-transform: lowercase;
}

.cookie-content p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.btn-accept {
    background: linear-gradient(135deg, #8b5cf6, #06b6d4);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
    min-width: 120px;
}

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

.btn-decline {
    background: transparent;
    color: #666;
    border: 2px solid #ddd;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
}

.btn-decline:hover {
    border-color: #999;
    color: #333;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(241, 241, 241, 1);
    backdrop-filter: blur(10px);
    z-index: 999;
    padding: 1rem 0;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Sigmar';
        text-decoration: none;
}

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

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: rgba(30, 36, 35, 1);

}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #666;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #8b5cf6;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Main Content */
main {
    margin-top: 80px;
}

/* Hero Section */
.hero {
   
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 2rem 2rem;
    position: relative;
    overflow: hidden;
}


.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-title {
  font-family: 'Sigmar';
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 2rem;
    
}

.gradient-text {
    background: linear-gradient(135deg, #8b5cf6, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.future-text {
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sparkle-icon {
    width: auto;
    height: 74px;
    object-fit: contain;
    display: inline-block;
    vertical-align: middle;
    margin-left: 0.5rem;
}

.play-btn {
    background: linear-gradient(270deg, #16E2A9 0%, #8D3292 100%);

    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 20px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
    margin-bottom: 80px;
}

.play-btn:hover {
    transform: translateY(-3px);
}

.hero-characters {
    display: flex;
    justify-content: center;
    gap: 120px;
    margin-bottom: 80px;
}

.character {
    width: 100px;
    height: 100px;
    animation: float 3s ease-in-out infinite;
}

.character:nth-child(2) {
    animation-delay: -1s;
}

.character:nth-child(3) {
    animation-delay: -2s;
}

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

.hero-description {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 3rem;
    margin-top: 2rem;
    font-size: 0.95rem;
    text-align: left;
}

.hero-description p {
  max-width: 450px;
}

.stats-section {
    background: linear-gradient(
      rgba(0, 0, 0, 0.32),
      rgba(0, 0, 0, 0.32)
    ), url(/wp-content/themes/techfile_kxblnyrb/./images/385c56a50031f0dce04d39f4d04be4c17cc28274.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    color: white;
    padding: 20px;
    border-radius: 40px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 120px;
    width: 100%;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 40px;
}

.stat-number {
  font-family: 'Sigmar';
    display: block;
    font-size: 40px;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
}

/* About Section */
.about {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    font-family: 'Sigmar';
    margin-bottom: 3rem;
}

.about-content .section-title {
  text-align: left;
}

.purple-text {
    background: linear-gradient(270deg, #16E2A9 0%, #8D3292 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;

}

.blue-text {
   background: 
linear-gradient(270deg, #8D3292 0%,  #16E2A9 100%);

  -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sparkle-small {
    width: 60px;
    height: 60px;
    display: inline-block;
    vertical-align: middle;
    margin-left: 0.5rem;
}

.star-icon {
    width: 25px;
    height: 25px;
    display: inline-block;
    vertical-align: middle;
    margin-left: 0.5rem;
}

.about-description {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 40px;
    font-size: 14px;
    line-height: 1.6;
}

.about-description p {
  max-width: 500px;
  width: 100%;
}

/* What We Offer */
.offer-section {
    margin: 120px 0;
}

.offer-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
    font-family: 'Sigmar';
}

.teal-text {
      background: linear-gradient(270deg, #16E2A9 0%, #8D3292 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: 1px solid rgba(0, 0, 0, 1);
    border-radius: 40px;
  }


.offer-item {
  padding: 40px 6px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.offer-item:not(:last-child) {
  border-right: 1px solid #000;
}


.offer-item img {
    width: 100%;
    height: auto;
    object-fit: contain;
    max-width: 248px;
}

.offer-item h4 {
  font-family: 'Sigmar';
  font-weight: 400;
  font-size: 40px;
  line-height: 90%;
}

.offer-item p {
    line-height: 1.7;
    font-size: 0.9rem;
}

/* Player Voices */
.voices-section {
    margin: 120px 0;
    text-align: center;
}

.voices-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 3rem;
    font-family: 'Sigmar';
    
}

.voices-content {
  display: grid;
  grid-template-columns: 1fr 430px 1fr;
  gap: 16px;
}

.voices-content .col {
  display: flex;
  flex-direction: column;
  gap: 160px;
}

.voice-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    text-align: left;
    max-width: 320px;
    width: 100%;
}

.voice-item--right {
  margin-left: auto;
}

.voice-flower {
    flex-shrink: 0;
    max-width: 430px;
    margin-left: auto;
    margin-right: auto;
}

.voice-flower img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.voice-text p {
    font-size: 16px;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}


/* FAQ Section */
.faq-section {
    padding: 40px 0;
}

.faq-title img {
  height: 83px;
  margin-left: auto;
  margin-right: auto;
  display: block;
    margin-bottom: 3rem;
}

.faq-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  padding: 20px 60px;
  border-radius: 20px;
  color: #fff;
  background: rgba(22, 226, 169, 1);
}

.faq-item:nth-child(even) {
  background: rgba(141, 50, 146, 1);
}

.faq-question {
  background: transparent;
  border: none;
    width: 100%;
    text-align: left;
    font-size: 24px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    gap: 8px;
    color: #fff;
    align-items: center;
    
}


.faq-icon {
    font-size: 1.5rem;
    margin-left: auto;
    transition: transform 0.3s ease;
}

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

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

.faq-item.active .faq-answer {
    max-height: max-content;
    padding-top: 16px;
}

.faq-answer p {
    font-size: 18px;
    line-height: 1.4;
}

/* Footer */
.footer {
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 2rem;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-brand {
  color: #000;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: unset;
}

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

.footer-brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: "Sigmar";
}

.footer-info {
  display: flex;
  justify-content: flex-end;
  gap: 40px;
}

.company-info, .contact-info {
    margin-bottom: 0.5rem;
}

.footer-info p {
    font-size: 0.9rem;
    margin: 0.2rem 0;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.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: translateY(-2px);
}

.social-link.twitter {
    background: #1da1f2;
}

.social-link.facebook {
    background: #4267b2;
}

.social-link img {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    border-top: 1px solid #e0e0e0;
    padding-top: 2rem;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

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

.footer-nav {
    display: flex;
    gap: 2rem;
}

.footer-nav a {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #8b5cf6;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-description,
    .about-description {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .offer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .voice-item,
    .voice-item.reverse {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .offer-item, .voice-item, .stat-item {
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.6s ease;
    }
    
    .animate-in {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }
    
    .nav-menu.active {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(243, 243, 243, 1);
        flex-direction: column;
        padding: 1rem 2rem;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

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

    .hamburger.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .hero {
        padding: 2rem 1rem;
    }

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

    .sparkle-icon {
      height: 50px;
    }

    .hero-characters {
        gap: 10px;
    }



    .cookie-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }

    .about {
        padding: 3rem 1rem;
    }

    .footer {
        padding: 2rem 1rem 1rem;
    }

    .footer-nav {
        flex-direction: column;
        gap: 1rem;
    }

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

@media (max-width: 480px) {
    .offer-grid {
        grid-template-columns: 1fr;
    }
    .offer-item:not(:last-child) {
      border-bottom: 1px solid #000;
      border-right: none;
  }

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

  .faq-item {
    padding: 20px;
  }

  .voice-item {
    max-width: 100%;
  }

  .voices-content .col {
    gap: 20px;
  }
    .nav {
        padding: 0 1rem;
    }

    .character {
        width: 80px;
        height: 80px;
    }
    .hero-title {
        font-size: 50px;
    }

    .footer-info {
      flex-direction: column;
      align-items: center;
    }



    .cookie-content {
        padding: 0 1rem;
    }

    .cookie-content h2 {
        font-size: 2rem;
    }
}

.policy {
  margin-top: 60px;
  padding-top: 60px;
  padding-bottom: 60px;
}

.policy h1 {
  font-family: 'Sigmar';
  font-weight: 400;
  font-size: 60px;
  line-height: 90%;
  margin-bottom: 32px;
}

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

.policy .container {
  text-align: left !important;
}

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

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