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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #1a1a2e;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

button {
    font-family: 'Nunito', sans-serif;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* ========== BUTTONS ========== */
.btn-primary {
    background: rgba(247, 59, 80, 1);
    color: white;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(255, 82, 82, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(255, 82, 82, 0.4);
}

/* ========== COOKIE BANNER ========== */
.cookie-banner {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    height: max-content;
    background: rgba(134, 130, 227, 1);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 58px;
}

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

.cookie-content {
    max-width: 800px;
    text-align: center;
    color: white;
}

.cookie-content h2 {
    font-size: 60px;
    line-height: 1;
    font-weight: 800;
    margin-bottom: 30px;
}

.cookie-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cookie-buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.btn-cookie {
    width: 100%;
    padding: 20px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-cookie.accept {
    background: rgba(247, 59, 80, 1);
    color: white;
}

.btn-cookie.accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(255, 82, 82, 0.5);
}

.btn-cookie.refuse {
    background: white;
    color: #6c63ff;
}

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

/* ========== HEADER ========== */
.header {
    padding: 20px 0;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 800;
    color: #1a1a2e;
}

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

.nav-list {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-list a {
    font-weight: 600;
    color: #1a1a2e;
}

.nav-list a:hover {
    color: #6c63ff;
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    padding: 5px;
}

.burger span {
    width: 25px;
    height: 3px;
    background: #1a1a2e;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ========== HERO SECTION ========== */
.hero {
    padding: 80px 0;
    background: url(/wp-content/themes/techfile_yvslfuok/./images/hero-bg.jpg) no-repeat center;
    background-size: cover;
    text-align: center;
}

.hero-title {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.2;
    color: #1a1a2e;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero .btn-primary {
    margin-bottom: 50px;
}

.hero-image {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

/* ========== BELIEFS SECTION ========== */
.beliefs {
    padding: 100px 0;
    background: white;
}

.section-title {
    font-size: 40px;
    font-weight: 800;
    text-align: center;
    color: #1a1a2e;
    margin-bottom: 60px;
}

.beliefs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    row-gap: 40px;
    align-items: start;
}

.belief-card {
  display: flex;
  flex-direction: column;
}

.belief-card--right {
  text-align: right;
  align-items: flex-end;
}

.belief-card--left {
  text-align: left;
}

.belief-card.center-card {
    grid-row: span 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.belief-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 8px;
}


.belief-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 4px;
    color: #1a1a2e;
}

.belief-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

/* ========== EXPLORE SECTION ========== */
.explore {
    padding: 60px 0;
    background: rgba(215, 246, 255, 1);
}

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

.explore-text h2 {
    font-size: 40px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 20px;
    line-height: 1.2;
}

.explore-text p {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.explore-image img {
  width: 100%;
  height: auto;
}

/* ========== GALLERY SECTION ========== */
.gallery {
    padding: 80px 0 26px;
    background: white;
}

.gallery-img {

}

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

/* ========== STATS SECTION ========== */
.stats {
    padding: 30px 0 0;
    background: white;
}

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

.stat-card {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 900;
    background: linear-gradient(135deg, #6c63ff 0%, #8c7aff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: #666;
    font-weight: 600;
}

/* ========== TESTIMONIALS SECTION ========== */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9ff 100%);
}

.testimonials-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 30px;
}

.testimonials-track {
    flex: 1;
    overflow: hidden;
}

.testimonial-card {
    background: rgba(255, 246, 241, 1);
    padding: 40px;
    border-radius: 20px;
    display: none;
}

.testimonial-card.active {
    display: block;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 30px;
}

.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-size: 16px;
    font-weight: 700;
    color: #1a1a2e;
}

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

.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #6c63ff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.slider-btn:hover {
    background: #5a52d5;
}

.slider-btn img {
    width: 20px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #6c63ff;
    width: 40px;
    border-radius: 6px;
}

/* ========== FAQ SECTION ========== */
.faq {
    padding: 100px 0;
    background: rgba(215, 246, 255, 1);
}

.faq .container {
  display: flex;
  gap: 40px;
}

.faq-header {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 324px;
    width: 100%;
}

.faq-header img {
    width: 60px;
}

.faq-header h2 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    color: #1a1a2e;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.faq-item {
    background: rgba(255, 255, 255, 1);
    padding: 24px 28px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    text-align: left;
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
}

.faq-icon {
    font-size: 24px;
    color: #6c63ff;
    font-weight: 300;
    transition: transform 0.3s ease;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    display: none;
   width: 80%;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  display: block;
    max-height: max-content;
}

.faq-answer p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
}

/* ========== CTA SECTION ========== */
.cta {
    padding: 100px 0;
   
    color: white;
    position: relative;
    overflow: hidden;
}

.cta .container {
  background: rgba(134, 130, 227, 1);
  border-radius: 66px;
  padding: 40px;
  overflow: hidden;
}

.cta-content {
    max-width: 600px;
}

.cta h2 {
    font-size: 44px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
}

.cta p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta .btn-primary {
    background: white;
    color: #6c63ff;
}

.cta-image {
    position: absolute;
    right: 0;
    top: 0;
    max-width: 600px;
}

/* ========== FOOTER ========== */
.footer {
    background: #1a1a2e;
    color: white;
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
}

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

.footer-description {
    font-size: 14px;
    line-height: 1.8;
    color: #b3b3b3;
    margin-bottom: 30px;
}

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

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #a8d545;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: white;
}

.social-link:hover {
    background: #96c038;
    transform: translateY(-2px);
}

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

.footer-column h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column a {
    color: #b3b3b3;
    font-size: 14px;
}

.footer-column a:hover {
    color: white;
}

.footer-column p {
    color: #b3b3b3;
    font-size: 14px;
    line-height: 1.8;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-legal {
    display: flex;
    gap: 15px;
    align-items: center;
    font-size: 14px;
    color: #b3b3b3;
}

.footer-legal a:hover {
    color: white;
}

.copyright {
    font-size: 14px;
    color: #b3b3b3;
}

/* ========== GAMES PAGE ========== */
.games-hero {
    padding: 80px 0 100px;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9ff 100%);
    min-height: 100vh;
    position: relative;
}

.page-title {
    font-size: 56px;
    font-weight: 900;
    text-align: center;
    color: #1a1a2e;
    margin-bottom: 40px;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.game-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 6px 6px 0px 0px rgba(247, 59, 80, 1);
    aspect-ratio: 358/223;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.game-card:hover {
    transform: translateY(-10px) !important;
}

.game-card.large {
    grid-column: span 2;
    grid-row: span 2;
}

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

.bee-decoration {
    position: absolute;
    width: 60px;
    height: 60px;
    z-index: 3;
    animation: float 3s ease-in-out infinite;
}

.bee-1 {
    top: 20%;
    right: 15%;
}

.bee-2 {
    bottom: 10%;
    left: 10%;
    animation-delay: 1.5s;
}

.bee-3 {
  top: 80px;
    left: 5%;
    width: 120px;
    height: auto;
    z-index: 5;
}

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

/* ========== GAME PAGE ========== */
.game-hero {
    padding: 80px 0;
    background: linear-gradient(180deg, #ffffff 0%, #fef5f5 100%);
}

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

.game-title {
    font-size: 56px;
    font-weight: 900;
    color: #1a1a2e;
    margin-bottom: 20px;
}

.game-description {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
}

.game-preview {
    position: relative;
    
}

.game-preview img {
    border-radius: 50%;
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
   box-shadow: 6px 6px 0px 0px rgba(247, 59, 80, 1);

}

.game-advantages {
    padding: 100px 0;
    background: white;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
}

.advantage-card {
    text-align: left;
}

.advantage-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.advantage-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 12px;
}

.advantage-card p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 1024px) {


    .explore-image {
      max-width: 400px;
      margin-left: auto;
    }

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

    .belief-card.center-card {
        grid-column: span 2;
        grid-row: auto;
    }

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

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

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

    .game-card.large {
        grid-column: span 2;
        grid-row: span 1;
    }

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

    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cta-image {
        max-width: 300px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        transition: left 0.3s ease;
        padding: 40px 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .nav.active {
        left: 0;
    }

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

    .burger {
        display: flex;
    }

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

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

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


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

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

    .testimonials-slider {
        flex-direction: column;
    }

    .slider-btn {
        display: none;
    }

    .faq-header {
        flex-direction: column;
        text-align: center;
    }



        .belief-card.center-card {
         grid-column: unset;
         grid-row: auto;
        }

        .faq .container {
          flex-direction: column;
        }

    .cta-image {
        display: none;
    }

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

    .footer-legal {
        flex-wrap: wrap;
        gap: 10px;
    }

    .cta .container {
      margin-left: 16px;
      margin-right: 16px;
      width: calc(100% - 32px);
    }

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



    .game-card.large {
        grid-column: 1;
    }

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

    .cookie-content h2 {
        font-size: 40px;
    }

    .cookie-content p {
        font-size: 16px;
    }
}

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

    .btn-primary {
        padding: 14px 30px;
        font-size: 14px;
    }

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

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

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

    .cookie-content h2 {
        font-size: 32px;
    }

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

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

.policy-content {
  padding-top: 40px;
}

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