/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-bg-dark: #0a0a0f;
    --color-bg-darker: #05050a;
    --color-primary: #e8ff3a;
    --color-secondary: #7c3aed;
    --color-accent: #06b6d4;
    --color-text-primary: #ffffff;
    --color-text-secondary: #a0a0a0;
    --color-border: #2a2a3a;
    --font-primary: 'Martian Mono', monospace;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
   background: #0A090E;
    color: var(--color-text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

button {
    font-family: var(--font-primary);
    cursor: pointer;
    border: none;
    outline: none;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ===== COOKIE CONSENT ===== */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 100%);
    border: 2px solid var(--color-primary);
    border-radius: 20px 20px 0 0;
    padding: 30px;
    z-index: 9999;
    box-shadow: 0 -10px 50px rgba(232, 255, 58, 0.2);
    animation: slideUp 0.5s ease-out;
    display: none;
}

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

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

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

.cookie-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.cookie-content h2 {
    font-size: 28px;
    font-weight: 800;
    color: var(--color-text-primary);
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.cookie-content p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--color-text-secondary);
    margin-bottom: 25px;
}

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

.btn-accept {
    background-color: var(--color-primary);
    color: var(--color-bg-dark);
    font-size: 16px;
    font-weight: 700;
    padding: 18px 40px;
    border-radius: 50px;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.btn-accept:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 25px rgba(232, 255, 58, 0.4);
}

.btn-manage {
    background-color: transparent;
    color: var(--color-primary);
    font-size: 16px;
    font-weight: 700;
    padding: 18px 40px;
    border: 2px solid var(--color-primary);
    border-radius: 50px;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.btn-manage:hover {
    background-color: var(--color-primary);
    color: var(--color-bg-dark);
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    z-index: 1000;
   
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 2px;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-icon {
   width: 30px;
}

.nav {
display: flex;
align-items: center;
}

.nav-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    list-style: none;
}

.nav-list a {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width 0.3s ease;
}

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

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

.burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    padding: 10px;
}

.burger-menu span {
    width: 30px;
    height: 3px;
    background: var(--color-primary);
    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 {
    padding: 150px 0 100px;
    
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(124, 58, 237, 0.1) 0%, transparent 70%);
}

.hero-content {
    display: flex;
    justify-content: space-between;
    gap: 20px;
   
    position: relative;
    z-index: 1;
    padding: 50px 20px;
    border-radius: 40px;
background: linear-gradient(254deg, #0D4C6F 0%, #591444 100%);
}

.hero-text {
    
}

.hero-title {
    font-size: 92px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.gradient-text {
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 13px;
    line-height: 1.8;
    color: #fff;
    max-width: 340px;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 3;
}

.btn-primary {
    background: var(--color-primary);
    color: var(--color-bg-dark);
    font-size: 16px;
    font-weight: 700;
    padding: 18px 40px;
    border-radius: 50px;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    position: relative;
    z-index: 3;
}

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

.hero-col {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
    justify-content: space-between;
}

.hero-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
   
}

.stat-item h3 {
    font-size: 36px;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 12px;
    color: var(--color-text-secondary);
    letter-spacing: 1px;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 340px;
    width: 31%;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.hero-image img {
    width: 100%;
    filter: drop-shadow(0 0 50px rgba(124, 58, 237, 0.5));
    
}

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

/* ===== WHY SECTION ===== */
.why-section {
    padding: 100px 0;
    
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.section-description {
    font-size: 13px;
    line-height: 1.8;
    color: var(--color-text-secondary);
    margin-bottom: 50px;
    max-width: 900px;
    letter-spacing: 0.5px;
}

.features-grid {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 80px;
    position: relative;
    align-items: flex-start;
}

.features-grid::before {
    content: '';
    position: absolute;
    width: 25%;
    max-width: 413px;
    aspect-ratio: 413 / 72;
    background-image: url(/wp-content/themes/techfile_3n3qsgtl/assets/images/pointer.webp);
    background-size: 100% 100%;
    bottom: 0;
    left: 0;
}


.features-grid::after {
    content: '';
    position: absolute;
    width: 25%;
    max-width: 413px;
    aspect-ratio: 413 / 72;
    background-image: url(/wp-content/themes/techfile_3n3qsgtl/assets/images/arr.webp);
    background-size: 100% 100%;
    top: 0;
    right: 0;
}



.feature-card {
   background: linear-gradient(135deg, rgba(232, 255, 58, 0.1) 0%, rgba(232, 255, 58, 0.05) 100%);
    border-color: var(--color-primary);
    border: 2px solid var(--color-primary);
   flex: 0 1 46%;
   width: 100%;
    padding: 20px;
    transition: all 0.3s ease;
    min-height: 280px;
}

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

.feature-card.yellow {
    background: linear-gradient(135deg, rgba(232, 255, 58, 0.1) 0%, rgba(232, 255, 58, 0.05) 100%);
    border-color: var(--color-primary);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(124, 58, 237, 0.2);
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #E7EA2B;
font-family: "Martian Mono";
font-size: 28px;
font-style: normal;
font-weight: 800;
line-height: normal;
text-transform: uppercase;
}

.feature-card p {
    font-size: 12px;
    line-height: 1.4;
    letter-spacing: 0.5px;
}

/* ===== POPULAR SECTION ===== */
.popular-section {
    padding: 100px 0;
  
    position: relative;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 50px;
    max-width: 792px;
    width: 80%;
}

.game-card {
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.game-card:hover {
    transform: scale(1.05);
    border-color: var(--color-primary);
    box-shadow: 0 10px 40px rgba(232, 255, 58, 0.3);
}

.game-card img {
    width: 100%;
    height: auto;
}

.popular-character {
    position: absolute;
    right: 0;
    bottom: 100px;
    max-width: 462px;
    width: 30%;
}

.popular-character img {
    filter: drop-shadow(0 0 30px rgba(232, 255, 58, 0.3));
    animation: float 3s ease-in-out infinite;
    width: 100%;
}

/* ===== SNAPSHOTS SECTION ===== */
.snapshots-section {
    padding: 100px 0;
   
}

.snapshots-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    margin-top: 50px;
}

.snapshot-item {
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.3s ease;
    width: 100%;
    flex: 0 1 47%;
}

.snapshot-item.large {
    grid-row: span 2;
}

.snapshot-item:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 50px rgba(124, 58, 237, 0.3);
}

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

/* ===== CHOOSE SECTION ===== */
.choose-section {
    padding: 100px 0;
   
}

.choose-content {
    display: flex;
    
    gap: 20px;
    align-items: center;
}

.choose-image {
    max-width: 705px;
    width: 100%;
    margin-right: -100px;
}

.choose-image img {
    width: 100%;
    max-width: 100%;
    filter: drop-shadow(0 0 50px rgba(232, 255, 58, 0.4));
    animation: float 3s ease-in-out infinite;
}

.choose-text {
    max-width: 792px;
    width: 100%;
    flex: 0 1 100%;
    margin-left: -90px;
    position: relative;
    z-index: 3;
}

.choose-list {
    list-style: none;
    margin-top: 40px;
}

.choose-list li {
    background: rgba(232, 255, 58, 0.1);
    border: 2px solid var(--color-primary);
    border-radius: 50px;
    padding: 18px 30px;
    margin-bottom: 15px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.choose-list li:hover {
    background: var(--color-primary);
    color: var(--color-bg-dark);
    transform: translateX(10px);
}

/* ===== JOIN SECTION ===== */
.join-section {
    padding: 30px 0 60px;
    text-align: center;
}

.join-content {
    max-width: 1100px;
    margin: 0 auto;
    border-radius: 40px;
    padding: 60px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
background: linear-gradient(254deg, #0D4C6F 0%, #591444 100%);
}

.join-description {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 40px;
    letter-spacing: 0.5px;
    max-width: 900px;
}

.btn-join {
    background: var(--color-primary);
    color: var(--color-bg-dark);
    font-size: 14px;
    font-weight: 700;
    padding: 20px 50px;
    border-radius: 50px;
    border: 3px solid var(--color-bg-dark);
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.btn-join:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(10, 10, 15, 0.5);
}

/* ===== FOOTER ===== */
.footer {
    padding: 60px 0 30px;
   
}

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

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.footer-links {
    margin-bottom: 30px;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.footer-links p {
    font-size: 14px;
    color: var(--color-text-secondary);
    letter-spacing: 0.5px;
}

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

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

.footer-social {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.footer-social a {
    width: 40px;
    transition: transform 0.3s ease;
}

.footer-social a img {
    width: 100%;
}

.footer-social a:hover {
    transform: scale(1.2);
    color: var(--color-primary);
}

.footer-copyright {
    font-size: 12px;
    color: var(--color-text-secondary);
    letter-spacing: 0.5px;
}

.game-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1023px) {
    .burger-menu {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(10, 10, 15, 0.98);
        backdrop-filter: blur(10px);
        transition: left 0.3s ease;
        padding: 40px;
        justify-content: center;
    }

    .nav.active {
        left: 0;
    }

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

    .nav-list a {
        font-size: 24px;
    }

    .hero-content {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 42px;
    }

    

    .hero-stats {
        justify-content: space-between;
    }

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

    .features-grid::after {
        display: none;
    }

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

   

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

    .snapshot-item.large {
        grid-row: span 1;
    }

    .choose-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .choose-image {
        order: -1;
    }
}

@media (max-width: 1100px) {
 .hero-title {
    font-size: 82px;
 }
}



@media (max-width: 768px) {
    .cookie-content h2 {
        font-size: 22px;
    }

    .cookie-content p {
        font-size: 13px;
    }

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

    .hero-content {
        flex-wrap: wrap;
        padding-bottom: 0;
        align-items: flex-end;
    }

    .hero-title {
        font-size: 64px;
    }

    .hero-description {
        font-size: 12px;
        width: 100%;
        max-width: 100%;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .hero-col {
        order: 3;
        padding-bottom: 40px;
    }

    .hero-image {
        position: relative;
        left: auto;
        transform: none;
        order: 2;
    }

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

    .section-description {
        font-size: 12px;
    }

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

    .features-grid::after,
    .features-grid::before {
        display: none;
    }

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

     .popular-character {
        position: relative;
        width: 100%;
        right: -20px;
        margin-left: auto;
        margin-top: 60px;
        bottom: auto;
    }

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

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

    .snapshots-section {
        padding-top: 40px;
    }

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

    .btn-join {
        font-size: 12px;
        padding: 18px 30px;
    }

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

    .choose-section {
        padding-top: 20px;
        overflow: hidden;
    }

    .choose-text {
margin-left: 0;
    }
}

@media (max-width: 520px) {
    .logo {
        font-size: 18px;
    }

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

    .stat-item h3 {
        font-size: 28px;
    }

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

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

    .popular-section {
        padding-bottom: 30px;
    }

    .feature-card {
        padding: 15px;
    }

    .cookie-buttons {
        gap: 10px;
    }

    .btn-accept,
    .btn-manage {
        padding: 15px 30px;
        font-size: 14px;
    }

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

    .hero-image {
        order: 3;
        width: 100%;
        max-width: 200px;
    }
}

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

              
                

                