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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cookie-consent.show {
    opacity: 1;
    visibility: visible;
}

.cookie-content {
    background: #E8E8E8;
    padding: 60px 80px;
    border-radius: 0;
    max-width: 850px;
    width: 100%;
}

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

.cookie-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #333;
}

.cookie-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.btn-accept,
.btn-learn-more {
    flex: 1;
    padding: 18px 40px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
}

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

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

.btn-learn-more {
    background: transparent;
    color: #000;
    border: 2px solid #000;
}

.btn-learn-more:hover {
    background: #000;
    color: white;
}

/* Header */
.header {
    background: transparent;
    padding: 16px 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
}

.logo img {
    width: 24px;
}

.logo-icon {
    color: #87CEEB;
    font-size: 24px;
}

.logo-text {
    color: #fff;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
    border-radius: 99px;
border: 2px solid rgba(255, 255, 255, 0.08);
background: rgba(255, 255, 255, 0.24);
padding: 18px;
}

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

.nav-link:hover,
.nav-link.active {
    color: #333;
}

.btn-contact {
    border-radius: 99px;
background: #FFF;
color: #333;
text-decoration: none;
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
    border: none;
}

.btn-contact:hover {
    background: #333;
    color: white;
}

.burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    border-radius: 99px;
border: 2px solid rgba(255, 255, 255, 0.08);
background: rgba(255, 255, 255, 0.24);
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background: #fff;
    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(7px, -7px);
}

/* Hero Section */
.hero {
    background: linear-gradient(112deg, #6DDBE4 0.95%, #F5C8BC 99.2%);
    padding: 150px 0 100px;
}

.hero-content {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    position: relative;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.7);
    padding: 8px 20px;
    border-radius: 16px;
border: 2px solid rgba(255, 255, 255, 0.08);
background: rgba(255, 255, 255, 0.24);
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 30px;
}

.badge-icon {
    color: #87CEEB;
}

.hero-head {
    margin: 0 auto;
    width: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    position: relative;
    z-index: 3;
}

.hero-title {
    font-size: 12vw;
    font-weight: 600;
    color: white;
    line-height: 1;
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 600;
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 60px;
    color: #fff;
}

.highlight {
    color: #FF69B4;
}

.hero-left {
    max-width: 310px;
}

.hero-description {
    font-size: 16px;
    line-height: 1.4;
    font-weight: 600;
    color: #fff;
    margin-bottom: 30px;
    max-width: 500px;
}

.btn-games {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 99px;
background: #0F5A75;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
    text-decoration: none;
}

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

.btn-icon {
    font-size: 20px;
}

.hero-right {
    
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 310px;
    align-self: flex-end;
}

.hero-image {
    position: relative;
    width: 100%;
    max-width: 326px;
    margin-top: -60px;
    z-index: 4;
}

.hero-image img {
    width: 100%;
}

.character-main {
    width: 100%;
    height: auto;
}

.cloud {
    position: absolute;
    width: 100%;
    max-width: 404px;
    right: 0;
    top: 0;
}

.cloud-1 {
    top: 10%;
    right: -20px;
}

.cloud-2 {
    bottom: 20%;
    right: -30px;
}

.hero-text-right {
    margin-top: 30px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
  
}

/* Possibilities Section */
.possibilities {
    padding: 100px 0;
    background: white;
}

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

.section-title {
    font-size: 36px;
    font-weight: 800;
    color: #333;
    margin-bottom: 40px;
    line-height: 1.3;
}

.feature-card {
    margin-bottom: 40px;
}

.feature-icon {
    color: #87CEEB;
    font-size: 24px;
    margin-bottom: 15px;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
}

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

.possibilities-right {
    position: relative;
}

.possibilities-text {
    background: #F5F5F5;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    font-size: 14px;
    color: #333;
}

.possibilities-image {
    text-align: center;
}

.character-rabbit {
    width: 100%;
    max-width: 350px;
}

/* Offers Section */
.offers {
    padding: 100px 0;
    background: white;
    background-image: url(/wp-content/themes/techfile_3mlpopdm/assets/images/f-bcg.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 98%;
}

.section-title-center {
    font-size: 42px;
    font-weight: 900;
    text-align: center;
    color: #333;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 14px;
    color: #000;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.offers-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
}

.offer-item {
     flex: 0 1 46%;
     position: relative;
}

.offer-card {
    padding: 30px;
    background: #F9F9F9;
    border-radius: 10px;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 300px;
   
}

.offer-item:nth-of-type(2) {
  margin-top: 100px;
}

.offer-item:nth-of-type(3) {
    left: 60px;
}

.offer-item:nth-of-type(4) {
    margin-top: 60px;
   right: 40px;
}

.o-2 {
    margin-left: auto;
}

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

.offer-card-center {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #FFB6D9 0%, #FFC9E5 100%);
}

.offer-character {
    width: 100%;
    max-width: 250px;
}

.cloud-small {
    position: absolute;
    width: 60px;
    opacity: 0.7;
}

.cloud-left {
    top: 20px;
    left: 10px;
}

.cloud-right {
    bottom: 20px;
    right: 10px;
}

.offer-icon {
    color: #87CEEB;
    font-size: 24px;
    margin-bottom: 15px;
}

.offer-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
}

.offer-card p {
    font-size: 13px;
    line-height: 1.7;
    color: #666;
}

.offer-card-empty {
    background: transparent;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: #FAFAFA;
}

.faq-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: start;
}

.faq-left {
    position: relative;
    text-align: center;
}

.faq-character {
    width: 100%;
    max-width: 300px;
}

.cloud-faq {
    position: absolute;
    width: 80px;
    top: 20px;
    right: 20px;
    opacity: 0.7;
}

.faq-intro {
    font-size: 14px;
    color: #666;
    margin-bottom: 30px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    border-radius: 16px;
background: #F7F7F7;
    padding: 16px;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    padding: 10px 0;
}

.faq-toggle {
    font-size: 24px;
    font-weight: 300;
    color: #666;
    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-top: 15px;
}

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

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(180deg, #E8F4F8 0%, #D0E9F2 100%);
    background-image: url(/wp-content/themes/techfile_3mlpopdm/assets/images/i-bcg.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.testimonials-grid {
    display: flex;
   justify-content: space-between;
   align-items: flex-start;
    gap: 20px;
    margin-top: 60px;
}

.testimonial-card {
   border-radius: 16px;
background: #F7F7F7;
    padding: 30px;
    border-radius: 15px;
    position: relative;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    flex: 0 1 46%;
    width: 100%;
}

.testimonial-card:nth-of-type(even) {
    margin-top: 180px;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #87CEEB;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: white;
}

.testimonial-avatar img {
    width: 100%;
}

.testimonial-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.testimonial-rating {
    color: #FFD700;
    font-size: 14px;
}

.testimonial-text {
    font-size: 14px;
    line-height: 1.4;
    color: #333;
}

.testimonial-cloud {
    position: absolute;
    width: 60px;
    bottom: 20px;
    right: 20px;
    opacity: 0.5;
}

/* Footer */
.footer {

    padding: 30px 0;
    color: white;
}

.footer-inner {
    border-radius: 32px;
background: linear-gradient(112deg, #6DDBE4 0.95%, #F5C8BC 99.2%);
padding: 20px;
}

.h-p {
    border-radius: 32px;
background: linear-gradient(112deg, #6DDBE4 0.95%, #F5C8BC 99.2%);
padding: 12px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 60px;
    align-items: start;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 24px;
    font-weight: 700;
    color: white;
}

.footer-address {
    text-align: left;
}

.footer-address p {
    font-size: 14px;
    line-height: 1.8;
    color: white;
    margin: 0;
}

.footer-address p strong {
    font-weight: 600;
}

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

.footer-contact p {
    font-size: 14px;
    line-height: 2;
    color: white;
    margin: 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    gap: 40px;
}

.footer-copy p {
    font-size: 13px;
    color: white;
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 40px;
    align-items: center;
}

.footer-legal a {
    color: white;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.footer-legal a:hover {
    opacity: 0.8;
}

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

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #00BFFF;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 20px;
}

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

.social-link:nth-child(2) {
    background: #1877F2;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.twitter-icon {
    font-size: 20px;
}

.facebook-icon {
    font-size: 24px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
}

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

.game-item {
    width: 100%;
    flex: 0 1 46%;
}

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

.g-title {
    background: linear-gradient(108deg, #6DDBE4 8.52%, #F5C8BC 92.62%);
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
font-size: 12vw;
text-align: center;
text-transform: uppercase;
line-height: 1;
margin-top: 40px;
}

.page-image {
    width: 100%;
}

/* Responsive Design */
@media (max-width: 1023px) {
    .btn-contact {
        display: none;
    }
    .burger-menu {
        display: flex;
    }

    .nav {
        position: fixed;
        width: 100%;
        max-width: 100vw;
        top: 0px;
        left: 0;
        right: 0;
        background: linear-gradient(112deg, #6DDBE4 0.95%, #F5C8BC 99.2%);
        padding: 30px 20px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }

    .nav.active {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        gap: 20px;
        width: 100%;
        max-width: 100%;
    }

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

    .hero-title {
        
    }

    .hero-image {
        order: 1;
        margin-top: 0;
    }

    .hero-left {
        order: 2;
        max-width: 500px;
    }

    .hero-right {
        order: 3;
        align-self: center;
        max-width: 500px;
    }

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

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

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

    .testimonials-grid {
        flex-wrap: wrap;
    }

    .testimonial-card:nth-of-type(even) {
        margin-top: 0;
    }

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

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

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

    .footer-legal {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .cookie-content {
        padding: 40px 30px;
    }

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

    .cookie-buttons {
        flex-direction: column;
    }

    .hero {
        padding: 100px 0 80px;
    }

    .hero-title {
       
    }

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

    .section-title {
        font-size: 28px;
    }

    .section-title-center {
        font-size: 32px;
    }

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

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

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

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

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

@media (max-width: 520px) {
    .cookie-content {
        padding: 30px 20px;
    }

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

    .hero-title {
       
    }

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

    .offers {
        background-size: cover;
    }

    .offers-grid {
        flex-direction: column;
        align-items: center;
    }

    .offer-item:nth-of-type(2) {
  margin-top: 0;
}

.offer-item:nth-of-type(3) {
    left: auto;
}

.offer-item:nth-of-type(4) {
    margin-top: 0;
   right: auto;
}

.o-2 {
    margin-left: auto;
}



    .section-title-center {
        font-size: 24px;
    }

    .btn-contact {
        display: none;
    }
}

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

              
                

                