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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #000;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

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

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

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #6b0fb5 0%, #b31fb5 50%, #ff00ff 100%);
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(255, 0, 255, 0.3);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
}

.cookie-content a {
    color: #fff;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.cookie-accept,
.cookie-decline {
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.cookie-accept {
    background: #fff;
    color: #6b0fb5;
}

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

.cookie-decline {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.cookie-decline:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Typography */
.section-title {
    font-family: 'Anton', sans-serif;
    font-size: 60px;
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.section-title.center {
    text-align: center;
}

.section-title.white {
    color: #fff;
}

.highlight {
    color: #ff00ff;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 18px 45px;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-family: 'Anton', sans-serif;
}

.btn-primary {
    background: linear-gradient(135deg, #ff00ff 0%, #b31fb5 100%);
    color: #fff;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 0, 255, 0.5);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-outline:hover {
    background: #fff;
    color: #6b0fb5;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Anton', sans-serif;
    font-size: 20px;
    letter-spacing: 1px;
}

.logo img {
    width: 30px;
    height: auto;
}

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

.nav-link {
    font-weight: 500;
    font-size: 14px;
    position: relative;
    transition: color 0.3s ease;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ff00ff;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Burger Menu */
.burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

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

.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 {
   
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 140px 0 80px;
    overflow: hidden;
    width: 100%;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-char-left {
    position: absolute;
    left: 0;
    top: 70%;
    transform: translateY(-50%);
    width: 42%;
    animation: float 3s ease-in-out infinite;
}

.hero-char-right {
    position: absolute;
    right: 0;
   top: 60%;
    transform: translateY(-50%);
    width: 30%;
    animation: float 4s ease-in-out infinite;
}

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

.hero-content {
   
    z-index: 1;
    text-align: center;
}

.hero-inner {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-title {
    font-family: 'Anton', sans-serif;
    font-size: 10vw;
    line-height: 1;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.hero-text {
    font-size: 16px;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* Journey Section */
.journey {
    padding: 100px 0;
}

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

.journey-text p {
    margin-bottom: 20px;
    opacity: 0.8;
    line-height: 1.8;
}

.journey-image {
    border-radius: 30px;
    overflow: hidden;
}

.journey-image img {
    width: 100%;
    transition: transform 0.3s ease;
}

.journey-image:hover img {
    transform: scale(1.05);
}

/* Adventure Section */
.adventure {
   background-color: #C74FFF;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background-image: url(/wp-content/themes/techfile_fmqplyik/assets/images/i-bcg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.adventure-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.adventure-left {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 150px;
}

.adventure-right {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 200px;
}

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

.adventure-content p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.white {
    color: #fff;
}

/* Gallery Section */
.gallery {
    padding: 100px 0;
    text-align: center;
}

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

.gallery-item {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease;
    aspect-ratio: 3/4;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.3), rgba(179, 31, 181, 0.3));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-10px);
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.faq-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
}

.faq-left {
    position: relative;
}

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

.faq-image img {
    max-width: 300px;
}

.faq-right {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: #1a1a1a;
    border-radius: 15px;
    overflow: hidden;
    transition: background 0.3s ease;
}

.faq-item:hover {
    background: #222;
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    background: transparent;
    border: none;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #ff00ff;
}

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

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

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

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 30px 25px;
}

.faq-answer p {
    line-height: 1.8;
    opacity: 0.8;
    font-size: 14px;
}

/* Adventure Awaits Section */
.adventure-awaits {
    padding: 100px 0;
}

.awaits-description {
    max-width: 1000px;
    margin: 30px 0 60px;
 
    line-height: 1.8;
    opacity: 0.8;
}

.awaits-games {
    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;
}

.awaits-game {
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease;
    aspect-ratio: 1;
}

.awaits-game:hover {
    transform: scale(1.05);
}

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

/* Contact Section */
.contact {
    background: linear-gradient(135deg, #6b0fb5 0%, #b31fb5 50%, #ff00ff 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background-color: #C74FFF;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background-image: url(/wp-content/themes/techfile_fmqplyik/assets/images/cont.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.contact-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.contact-left {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 200px;
}

.contact-right {
    position: absolute;
    right: 0;
    top: 0;
    width: 250px;
}

.contact-content {
    position: relative;
    z-index: 1;
}

.contact-content p {
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

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

/* Footer */
.footer {
    background: #0a0a0a;
    padding: 60px 0 30px;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Anton', sans-serif;
    font-size: 18px;
}

.footer-logo img {
    width: 25px;
}

.footer-nav {
    display: flex;
    gap: 30px;
    font-size: 14px;
}

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

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

.social-link {
    width: 40px;
    height: 40px;
    background: #1a1a1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #ff00ff;
    transform: translateY(-3px);
}

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

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

.footer-bottom p {
    font-size: 14px;
    opacity: 0.6;
}

/* Responsive Design */
@media (max-width: 1023px) {
    .section-title {
        font-size: 50px;
    }

    .hero-title {
        
    }

    .journey-content {
        gap: 50px;
    }

    .faq-wrapper {
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

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

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

    .hero {
        padding-top: 120px;

    }

    .hero-title {
        
    }

    .hero-text br {
        display: none;
    }

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

    .hero-char-left,
    .hero-char-right {
       position: relative;
       left: auto;
       right: auto;
       transform: none !important;
    }

    .hero-char-left {
        left: -20px;
        max-width: 500px;
        width: 100%;
    }

     .hero-char-right {
        right: -20px;
        align-self: flex-end;
        max-width: 343px;
        width: 100%;
    }

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

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

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

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

    .awaits-game {
      flex: 0 1 45%;
    }

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

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

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

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookie-accept,
    .cookie-decline {
        width: 100%;
    }

    .contact-buttons {
        max-width: 100%;
    }
}

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

    .hero-title {
       
    }

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

    .btn {
        padding: 15px 35px;
        font-size: 12px;
    }

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

    .faq-question {
        font-size: 12px;
        padding: 20px;
    }

    .faq-answer {
        font-size: 13px;
    }
}

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

              
                

                