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

:root {
    --primary-bg: #0a0e27;
    --secondary-bg: #1a1347;
    --accent-purple: #a855f7;
    --accent-orange: #fb923c;
    --accent-pink: #ec4899;
    --accent-cyan: #06b6d4;
    --text-white: #ffffff;
    --text-gray: #cbd5e1;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lexend', sans-serif;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1347 50%, #2d1b4e 100%);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Cookie Consent Banner */
.cookie-consent {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #0a0e27;
    border-radius: 20px;
    padding: 50px 60px;
    max-width: 850px;
    width: 90%;
    z-index: 10000;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    text-align: center;
    display: none;
}

.cookie-consent.show {
    display: block;
}

.cookie-content h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 48px;
    margin-bottom: 20px;
    
}

.cookie-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.btn-accept,
.btn-decline {
    padding: 15px 50px;
    font-family: 'Lexend', sans-serif;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept {
    background: linear-gradient(90deg, var(--accent-purple) 0%, var(--accent-orange) 100%);
    color: white;
}

.btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.4);
}

.btn-decline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-decline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
}

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

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

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

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

.logo span {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
   
}

.nav-list {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-list a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-list a:hover {
    color: var(--accent-purple);
}

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

.burger-btn span {
    width: 30px;
    height: 3px;
    background: white;
    transition: all 0.3s ease;
    border-radius: 2px;
}

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

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

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

/* Hero Section */
.hero {
    padding: 170px 0 120px;
    position: relative;
    overflow: hidden;
    background-image: url(/wp-content/themes/techfile_t45jfyoa/assets/images/hero-bcg.webp);
    background-position: center;
    background-size: cover;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(100px);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-left h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 84px;
    line-height: 1.1;
    margin-bottom: 40px;
   
}

.btn-primary {
    display: inline-block;
    padding: 18px 50px;
   border-radius: 10px;
border: 3px solid #FFF;
background: linear-gradient(90deg, #591DB4 0%, #D047DD 34.59%, #FCC93E 74.89%, #F76139 100%);
    color: white;
    text-decoration: none;
  
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(168, 85, 247, 0.5);
}

.hero-card {
    max-width: 467px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.hero-image {
    width: 100%;
    max-width: 400px;
    margin: 0 auto 20px;
    display: block;
}

.hero-card-text {
    
   
    border-radius: 15px;
    text-align: right;
}

.hero-card-text p {
    font-size: 28px;
    line-height: 1.6;
    margin: 0;
}

/* About Section */
.about {
    padding: 100px 0;
    position: relative;
    background-image: url(/wp-content/themes/techfile_t45jfyoa/assets/images/abcg.webp);
    background-size: cover;
    background-position: center;
}

.about::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -30%;
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(251, 146, 60, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(120px);
}

.about-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-left h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 72px;
    line-height: 1.2;
    margin-bottom: 30px;
    
}

.about-text p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.about-right {
    max-width: 600px;
    width: 100%;
}

.about-right img {
    width: 100%;
}

.game-img {
    width: 100%;

    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

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

/* Why Choose Section */
.why-choose {
    padding: 80px 0;
    position: relative;
    background-image: url(/wp-content/themes/techfile_t45jfyoa/assets/images/ibcg.webp);
    background-size: cover;
    background-position: center;
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 72px;
    text-align: center;
    margin-bottom: 60px;
    
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(168, 85, 247, 0.3);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon img {
    width: 100%;
   
}

.feature-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.feature-card p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-gray);
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    position: relative;
    background-image: url(/wp-content/themes/techfile_t45jfyoa/assets/images/rbcg.webp);
    background-size: cover;
    background-position: center top;
}

.testimonials h2 {
    
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 20%;
    right: -20%;
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(150px);
}

.testimonial-text {
    max-width: 580px;
    margin: 0 auto 140px;
    text-align: center;
}

.testimonial-text p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-gray);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 35px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.testimonial-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
}

.testimonial-card h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.testimonial-card p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-gray);
    font-style: italic;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    text-align: center;
    background-image: url(/wp-content/themes/techfile_t45jfyoa/assets/images/contbcg.webp);
    background-size: cover;
    background-position: center;
}

.contact-info {
    margin: 40px 0 60px;
}

.contact-info p {
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--text-gray);
}

.contact-info a {
    color: var(--accent-cyan);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--accent-purple);
}

.contact-logo {
    margin-top: 60px;
}

.contact-logo img {
    max-width: 400px;
    width: 100%;
    opacity: 0.8;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.3);
    padding: 40px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

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

.footer-logo span {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 20px;
    
}

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

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

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

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--accent-purple);
    transform: translateY(-3px);
}

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

.footer-copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright p {
    font-size: 13px;
    color: var(--text-gray);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(6, 1fr);
    gap: 8px;
    position: relative;
    z-index: 3;
}

.div1 {
    grid-column-start: 2;
}

.div2 {
    grid-column-start: 5;
    grid-row-start: 2;
}

.div3 {
    grid-column-start: 1;
    grid-row-start: 3;
}

.div4 {
    grid-column: span 3 / span 3;
    grid-row: span 3 / span 3;
    grid-column-start: 2;
    grid-row-start: 2;
}

.div5 {
    grid-column: span 2 / span 2;
    grid-row: span 2 / span 2;
    grid-row-start: 5;
}

.div6 {
    grid-column: span 2 / span 2;
    grid-row: span 2 / span 2;
    grid-column-start: 4;
    grid-row-start: 5;
}

.game-item {
    width: 100%;
    flex: 0 1 45%;
    margin: -20px;
}

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

.page-image {
    max-width: 400px;
    width: 100%;
}

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

/* Responsive Design */
@media (max-width: 1023px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-left h1 {
     
    }

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

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

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

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

    .nav {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(10, 14, 39, 0.98);
        backdrop-filter: blur(10px);
        padding: 30px;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

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

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

    .hero-left h1 {
      
    }

    .hero-card {
        margin-left: auto;
    }

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

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

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

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

    .cookie-consent {
        padding: 40px 30px;
    }

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

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

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

@media (max-width: 480px) {
    .hero-left h1 {
        font-size: 48px;
    }

    .hero-card-text p {
        font-size: 20px;
    }

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

    .about-left h2 {
        font-size: 38px;
    }

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

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

              
                

                