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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lexend', sans-serif;
    background-color: #01032A;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

.main {
    background-image: url(/wp-content/themes/techfile_ur0ignqo/assets/images/main.webp);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
}

.page {
    background-image: url(/wp-content/themes/techfile_ur0ignqo/assets/images/page.webp);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
}

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

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: linear-gradient(135deg, #2d1b69 0%, #1a1a2e 100%);
    padding: 30px 0;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

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

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

.cookie-content h3 {
    font-family: 'Audiowide', cursive;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.cookie-content p {
    font-size: 1rem;
    margin-bottom: 25px;
    line-height: 1.6;
    color: #e0e0e0;
}

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

.btn-accept, .btn-learn-more {
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-family: 'Lexend', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept {
    background: linear-gradient(135deg, #e91e63 0%, #9c27b0 100%);
    color: white;
}

.btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.3);
}

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

.btn-learn-more:hover {
    background: #9c27b0;
    transform: translateY(-2px);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.10);
    padding: 15px 0;
    transition: all 0.3s ease;
}

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

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

.logo img {
    width: 40px;
}

.logo-icon {
    font-size: 2rem;
    background: linear-gradient(135deg, #e91e63, #9c27b0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-text {
    font-family: 'Audiowide', cursive;
    font-size: 1.5rem;
    font-weight: 400;
}

.navigation {
    display: flex;
}

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

.nav-menu li a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu li a:hover {
    color: #e91e63;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #e91e63, #9c27b0);
    transition: width 0.3s ease;
}

.nav-menu li a:hover::after {
    width: 100%;
}

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

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

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

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

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

/* Hero Section */
.hero {
    padding: 150px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    /* content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(233, 30, 99, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(156, 39, 176, 0.1) 0%, transparent 50%);
    pointer-events: none; */
}

.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.hero h1 {
    font-family: 'Audiowide', cursive;
    font-size: 3.5rem;
  
    background: linear-gradient(135deg, #ffffff 0%, #e91e63 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero-graphic {
    margin: 30px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 492px;
    width: 100%;
}

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

.holographic-interface {
    width: 400px;
    height: 300px;
    position: relative;
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.1) 0%, rgba(156, 39, 176, 0.1) 100%);
    border: 2px solid rgba(233, 30, 99, 0.3);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    perspective: 1000px;
    transform-style: preserve-3d;
    animation: hologram-float 6s ease-in-out infinite;
}

.interface-elements {
    position: absolute;
    inset: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 15px;
}

.element {
    background: rgba(233, 30, 99, 0.1);
    border: 1px solid rgba(156, 39, 176, 0.3);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.element::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, #e91e63, #9c27b0);
    opacity: 0.6;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.element.chart::before {
    width: 60%;
    height: 60%;
    border-radius: 5px;
}

.element.stats::before {
    width: 40%;
    height: 40%;
}

.element.controls::before {
    width: 50%;
    height: 50%;
    border-radius: 50%;
}

.element.data::before {
    width: 70%;
    height: 30%;
    border-radius: 15px;
}

@keyframes hologram-float {
    0%, 100% { transform: rotateX(5deg) rotateY(5deg) translateY(0px); }
    50% { transform: rotateX(-5deg) rotateY(-5deg) translateY(-10px); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(0.8); }
    50% { opacity: 0.7; transform: translate(-50%, -50%) scale(1.2); }
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0 auto 40px;
    max-width: 900px;
    color: #e0e0e0;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-family: 'Lexend', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 200px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
}

.btn-primary {
    border-radius: 100px;
background: linear-gradient(90deg, #E21FFF 0%, #6D02EB 100%);
    color: white;
}

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

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #9c27b0;
}

.btn-secondary:hover {
    background: rgba(156, 39, 176, 0.1);
    transform: translateY(-3px);
}

/* About Section */
.about-section {
    padding: 100px 0;
   
    position: relative;
}

.about-section::before {
    /* content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none; */
}

.about-content {
    position: relative;
    z-index: 1;
    background-image: url(/wp-content/themes/techfile_ur0ignqo/assets/images/a-bcg.webp);
    background-position: center;
    background-size: 100% 100%;
    padding: 60px 20px;
    display: flex;
    gap: 30px;
    justify-content: space-between;
}

.content-title {
    font-family: 'Audiowide', cursive;
    font-size: 2.5rem;
    max-width: 370px;
    width: 100%;
    color: #ffffff;
}

.about-text {
    max-width: 635px;
    width: 100%;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #f0f0f0;
}

.btn-approach {
    padding: 15px 30px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-family: 'Lexend', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-approach:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Features Section */
.features-section {
    padding: 100px 0;
}

.features-section h2 {
    font-family: 'Audiowide', cursive;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 80px;
    background: linear-gradient(135deg, #ffffff 0%, #e91e63 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
}

.feature-card {
   
   
    transition: all 0.3s ease;
   
}

.feature-card:nth-of-type(2) {
  margin-top: 80px;
}

.feature-card:nth-of-type(3) {
    margin-top: 120px;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(233, 30, 99, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

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

.icon-content {
    font-size: 2rem;
    opacity: 0.8;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: 600;
    font-family: 'Audiowide', cursive;
}

.feature-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #d0d0d0;
}

/* Categories Section */
.categories-section {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.02);
}

.categories-content {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    padding: 60px 20px;
   background-image: url(/wp-content/themes/techfile_ur0ignqo/assets/images/d-bcg.webp);
   background-position: center;
   background-size: 100% 100%;
   display: flex;
   gap: 30px;
   justify-content: space-between;
}

.categories-text h2 {
    font-family: 'Audiowide', cursive;
    font-size: 2.5rem;
    margin-bottom: 40px;
    background: linear-gradient(135deg, #ffffff 0%, #e91e63 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.categories-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #e0e0e0;
}

/* Footer */
.footer {
   
    padding: 60px 0 20px;
   
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
}

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

.footer-info p {
    margin-bottom: 10px;
    color: #b0b0b0;
}

.footer-info a {
    color: #e91e63;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-info a:hover {
    color: #9c27b0;
}

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

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #e91e63;
}

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

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

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

.social-link:hover {
    background: linear-gradient(135deg, #e91e63, #9c27b0);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
}

.games-grid {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 40px 0;
}

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

.game-item:nth-of-type(2n) {
    margin-top: 150px;
}

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

.page-image {
    width: 100%;
    display: block;
    max-width: 450px;
    margin: 0 auto 60px;
}

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

/* Responsive Design */
@media (max-width: 1023px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .holographic-interface {
        width: 350px;
        height: 250px;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .burger-btn {
        display: flex;
    }
    
    .navigation {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: rgba(26, 26, 46, 0.98);
        backdrop-filter: blur(20px);
        transition: right 0.3s ease;
        padding-top: 80px;
    }
    
    .navigation.active {
        right: 0;
    }
    
    .nav-menu {
        flex-direction: column;
        padding: 40px;
        gap: 30px;
    }
    
    .nav-menu li a {
        font-size: 1.2rem;
    }
    
    .hero {
        padding: 120px 0 80px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .holographic-interface {
        width: 300px;
        height: 200px;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .games-grid {
        flex-wrap: wrap;
        gap: 20px;
    }

    .game-item:nth-of-type(2n) {
    margin-top: 0;
}
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
    
    .cookie-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-accept, .btn-learn-more {
        width: 100%;
        max-width: 200px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-section, .features-section, .categories-section {
        padding: 80px 0;
    }
    
    .about-text h2, .features-section h2, .categories-text h2 {
        font-size: 2rem;
    }

    .about-content {
        flex-direction: column;
        padding: 40px 15px;
    }

    .categories-content {
        flex-direction: column-reverse;
         padding: 40px 15px;
    }

    .feature-card:nth-of-type(2) {
  margin-top: 0;
}

.feature-card:nth-of-type(3) {
    margin-top: 0;
}
    
    .footer-content {
        display: flex;
        flex-direction: column;
        gap: 30px;
        text-align: center;
        align-items: center;
    }
    
    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .holographic-interface {
        width: 250px;
        height: 180px;
    }
    
    .cookie-content h3 {
        font-size: 2rem;
    }
    
    .about-text h2, .features-section h2, .categories-text h2 {
        font-size: 1.8rem;
    }

    .about-content {
        flex-direction: column;
        padding: 20px 10px;
        background-image: url(/wp-content/themes/techfile_ur0ignqo/assets/images/a-mob.webp);
        background-position: center;
        background-size: 100% 100%;
    }

    .categories-content {
        flex-direction: column-reverse;
         padding: 20px 10px;
          background-image: url(/wp-content/themes/techfile_ur0ignqo/assets/images/d-mob.webp);
        background-position: center;
        background-size: 100% 100%;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    .hero-description, .about-text p, .categories-text p {
        font-size: 1rem;
    }
}

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

              
                

                