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

:root {
    --primary-bg: linear-gradient(135deg, #1e0a4d 0%, #3d1a8c 50%, #5c3bc7 100%);
    --secondary-bg: rgba(30, 10, 77, 0.8);
    --card-bg: rgba(255, 255, 255, 0.1);
    --text-primary: #0F0F22;
    --text-secondary: rgba(255, 255, 255, 0.8);
    --accent-color: #c4f82a;
    --accent-hover: #a8d424;
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
   
}

/* Buttons */
.btn-primary {
    background: var(--accent-color);
    color: #1e0a4d;
    border: none;
    padding: 14px 32px;
    border-radius: var(--border-radius);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
   
    padding: 1rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: #FFF;
text-align: center;
font-family: Montserrat;
font-size: 24px;
font-style: normal;
font-weight: 800;
line-height: 90%; /* 21.6px */
letter-spacing: 1.92px;
text-transform: capitalize;
}

.logo img {
    max-width: 24px;
    width: 100%;
}

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

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

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

.burger-menu {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background: #fff;
    transition: var(--transition);
}

/* Hero Section */
.hero {
   overflow: hidden;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 160px;
    background-color: #0F0F22;
    background-image: url(/wp-content/themes/techfile_zv1id6t0/assets/images/bcg.png);
    background-size: cover;
    background-position: center;
    color: #fff;

}

.hero-content {
    max-width: 800px;
    z-index: 2;
    margin-bottom: 40px;
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-weight: 400;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 3rem;
    line-height: 1.1;
}

.hero-logo {
   width: 100%;
    z-index: 1;
   max-width: 1100px;
}

.hero-logo img {
    width: 100%;
    height: auto;
    display: block;
}

/* Games Impact Section */
.games-impact {
    padding: 100px 0;
   
}

.section-title {
   
    margin-bottom: 4rem;
    max-width: 800px;
    font-weight: 700;
    font-size: 3.5rem;
}

.impact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.impact-card {
    border-radius: var(--border-radius);
    padding: 24px;
    transition: var(--transition);
    height: 100%;
}

.impact-card:hover {
    transform: translateY(-5px);
}

.impact-card.blue-card {
    background-color: #0F0F22;
    color: white;
    background-image: url(/wp-content/themes/techfile_zv1id6t0/assets/images/bcg.png);
    background-size: cover;
}

.impact-card.dark-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
}

.impact-card.stats-card {
   border-radius: 20px;
background: #F9F9F9;
 
}

.tv-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.card-icon {
    margin-bottom: 1.5rem;
}

.stat-number {
    font-size: 5rem;
    font-weight: 800;
   background: linear-gradient(79deg, #0F0F22 12.12%, #5A4EFF 98.35%);
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 1rem;
}

.impact-card h3 {
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.impact-card p {
    font-size: 1rem;
    line-height: 1.6;
 
}

/* About Section */
.about {
    padding: 100px 0;
}

.about-title {
    text-align: center;
    font-size: 6rem;
    font-weight: 700;
    margin-bottom: 4rem;
    background: linear-gradient(79deg, #0F0F22 12.12%, #5A4EFF 98.35%);
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
    align-items: center;
}

.about-text {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
}

.about-text p {
    max-width: 410px;
}

.about-text h3 {
    font-size: 3rem;
   
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
}

.player-types {
    display: flex;
    flex-direction: column;
    gap: 0;
    
 
}

.player-type {
    padding: 2rem 1.5rem 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.30);
    transition: var(--transition);
    cursor: pointer;
    display: flex;
    gap: 8px;
}

.player-type:last-child {
    border-right: none;
}

.player-type.active {
   
  
}

.player-type:hover {
    background: rgba(255, 255, 255, 0.05);
}

.player-type.active:hover {
   
}

.type-number {
    display: block;
    color: rgba(30, 36, 35, 0.40);
font-family: Montserrat;
font-size: 24px;
font-style: normal;
font-weight: 600;
line-height: 90%; /* 21.6px */
    margin-bottom: 0.5rem;
}

.player-type.active .type-number {
    
}

.player-type h4 {
    margin-bottom: 1rem;
    font-size: 1.8rem;
    color: var(--text-primary);
}

.player-type p {
    font-size: 0.9rem;
    line-height: 1.5;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.player-type.active p {
    opacity: 1;
    max-height: 200px;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    
}

.testimonials-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
    margin-bottom: 4rem;
}

.testimonials-title-section h2 {
    font-size: 4rem;
    font-weight: 700;
background: linear-gradient(79deg, #0F0F22 12.12%, #5A4EFF 98.35%);
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.title-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.blue {
    background: #4c6ef5;
}

.dot.purple {
    background: #7c3aed;
}

.testimonials-description {
    padding-top: 1rem;
}

.testimonials-avatars {
   max-width: 100px;
}

.testimonials-avatars img {
   width: 100%;
}

.avatar:first-child {

}

.avatar-1 {
    background: linear-gradient(135deg, #ff6b6b, #feca57);
}

.avatar-2 {
    background: linear-gradient(135deg, #48dbfb, #0abde3);
}

.avatar-3 {
    background: linear-gradient(135deg, #ff9ff3, #f368e0);
}

.testimonials-description p {
    font-size: 1rem;
    line-height: 1.6;
  
}

.testimonial-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
}

.testimonial-image {
    border-radius: var(--border-radius);
    overflow: hidden;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-quote {
    background: linear-gradient(135deg, #4c6ef5 0%, #364fc7 100%);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial-quote .tv-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.testimonial-quote blockquote {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    color: white;
}

.testimonial-quote p {
    font-size: 1rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
}

.testimonial-rating {
    display: flex;
    flex-direction: column;
    justify-content: center;
  border-radius: 20px;
background: #F9F9F9;
padding: 24px;
}

.testimonial-rating .rating-score {
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(79deg, #0F0F22 12.12%, #5A4EFF 98.35%);
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
    line-height: 1;
}

.testimonial-rating p {
    font-size: 0.95rem;
    line-height: 1.5;
 
}

/* Footer */
.footer {
   background: #0F0F22;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 2rem;
    gap: 20px;
}

.footer-logo img {

}

.footer-link {
   background: linear-gradient(79deg, #e9e9ff 12.12%, #5A4EFF 98.35%);
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
font-size: 32px;
font-weight: 600;
}

.footer-info p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #fff;
}

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

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

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-color);
}

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

.social-icons img {
    width: 24px;
    height: 24px;
    opacity: 0.7;
    transition: var(--transition);
}

.social-icons a:hover img {
    opacity: 1;
}

.copyright {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    padding: 2rem;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

.cookie-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.cookie-content p {
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

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

.btn-accept {
    background: var(--accent-color);
    color: #1e0a4d;
    border: none;
    padding: 12px 30px;
    border-radius: var(--border-radius);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-learn-more {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 10px 28px;
    border-radius: var(--border-radius);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-accept:hover {
    background: var(--accent-hover);
}

.btn-learn-more:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.games-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
}

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

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

.hero-image {
    width: 100%;
    height: 348px;
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 40px;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Mobile Navigation */
@media (max-width: 1023px) {
    .burger-menu {
        display: flex;
    }
    
    .nav {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(30, 10, 77, 0.98);
        backdrop-filter: blur(15px);
        transition: var(--transition);
        z-index: 999;
    }
    
    .nav.active {
        right: 0;
    }
    
    .nav-menu {
        flex-direction: column;
        padding: 2rem;
        gap: 2rem;
        height: 100%;
        justify-content: flex-start;
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-menu a {
        display: block;
        padding: 1rem;
        font-size: 1.2rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .burger-menu.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .burger-menu.active span:nth-child(2) {
        opacity: 0;
    }
    
    .burger-menu.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}

/* Tablet Styles */
@media (max-width: 1023px) {
    .container {
        padding: 0 15px;
    }
    
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .testimonials-header {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .testimonials-title-section h2 {
        font-size: 3rem;
        justify-content: center;
    }
    
    .testimonial-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .impact-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .player-types {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .player-type {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .player-type:nth-child(2n) {
        border-right: none;
    }

    .about-text {
        flex-direction: column;
    }

    .about-text p {
        max-width: 100%;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
        align-items: center;
    }
    
    .footer-info {
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
    }
    .hero-logo {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-logo img {
        width: auto;
        max-width: 130%;
    }
}

/* Mobile Styles */
@media (max-width: 810px) {
    .hero-title {
        font-size: 3.2rem;
    }
    
    .about-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .testimonials-title-section h2 {
        font-size: 2.5rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .testimonials-avatars {
        justify-content: center;
    }
    
    .testimonial-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial-quote {
        padding: 2rem;
    }
    
    .testimonial-quote blockquote {
        font-size: 1.5rem;
    }
    
    .testimonial-rating .rating-score {
        font-size: 3.5rem;
    }
    
    .impact-card,
    .player-type,
    .testimonial-quote {
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 4rem;
    }
    
    .player-types {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .player-type {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 1.5rem 1rem;
    }
    
    .player-type:last-child {
        border-bottom: none;
    }
    
    .cookie-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-accept,
    .btn-learn-more {
        width: 200px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    .games-grid {
        justify-content: center;
    }
    .game-item {
      flex: 0 1 46%;
    }
}

@media (max-width: 480px) {
    .hero {
        padding-top: 140px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .about-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .testimonials-title-section h2 {
        font-size: 2rem;
    }
    
    .testimonials-header {
        gap: 1.5rem;
    }
    
    .testimonial-quote {
        padding: 1.5rem;
    }
    
    .testimonial-quote blockquote {
        font-size: 1.2rem;
    }
    
    .testimonial-rating .rating-score {
        font-size: 3rem;
    }
    
    .games-impact,
    .about,
    .testimonials {
        padding: 50px 0;
    }
    
    .impact-card,
    .player-type {
        padding: 1rem;
    }
    
    .cookie-consent {
        padding: 1rem;
    }
    .footer-link {
        font-size: 28px;
    }
}

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

              
                

                