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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Anton', sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
    overflow-x: hidden;
    line-height: 1.2;
}

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

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

button {
    font-family: 'Anton', sans-serif;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* ========================================
   COOKIE CONSENT
======================================== */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(20, 20, 20, 0.98);
    backdrop-filter: blur(10px);
    padding: 20px;
    z-index: 10000;
    border-top: 2px solid #a3ff12;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

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

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

.cookie-content p {
    font-size: 14px;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    flex: 1;
}

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

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

.cookie-accept,
.cookie-decline {
    padding: 12px 30px;
    font-size: 14px;
    border-radius: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cookie-accept {
    background: #a3ff12;
    color: #0a0a0a;
}

.cookie-accept:hover {
    background: #8fd610;
}

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

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

/* ========================================
   BUTTONS
======================================== */
.btn-primary {
    background: #ffffff;
    color: #0a0a0a;
    padding: 15px 40px;
    font-size: 16px;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
}

.btn-primary:hover {
    background: #e0e0e0;
    transform: scale(1.05);
}

.btn-accent {
    background: #a3ff12;
    color: #0a0a0a;
    padding: 15px 40px;
    font-size: 16px;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 400;
}

.btn-accent:hover {
    background: #8fd610;
    transform: scale(1.05);
}

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

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

.logo {
     display: flex;
    align-items: center;
    text-decoration: none;
    text-transform: uppercase;
}

.logo img {
    width: 40px;
}

.logo a {
    font-size: 20px;
    letter-spacing: 1px;
    font-weight: 400;
    transition: color 0.3s ease;
}

.logo a:hover {
    color: #a3ff12;
}

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

.nav-list a {
    font-size: 16px;
    transition: color 0.3s ease;
    text-transform: capitalize;
}

.nav-list a:hover {
    color: #a3ff12;
}

.btn-header {
    padding: 12px 35px;
}

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

.burger-menu span {
    width: 30px;
    height: 3px;
    background: #ffffff;
    transition: all 0.3s ease;
    display: block;
}

.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(8px, -8px);
}

/* ========================================
   HERO SECTION
======================================== */
.hero {
    padding: 180px 0 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow-x: clip;
}

.hero-content {
    display: flex;
   justify-content: space-between;
    gap: 80px;
    align-items: center;
}

.hero-text {
    max-width: 518px;
    width: 100%;
}

.hero-title {
    font-size: 96px;
    line-height: 0.9;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.hero-description {
    font-size: 16px;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 450px;
    font-weight: 300;
}

.hero-images {
    margin-right: -150px;
}

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



/* ========================================
   POWERED SECTION
======================================== */
.powered {
    padding: 120px 0;
    background-image: url(/wp-content/themes/techfile_itchyfzw/assets/images/ab.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 65%;
}

.powered-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    align-items: center;
    
}

.powered-text {
    display: flex;
    justify-content: center;
    align-items: center;
   text-align: center;
   flex-direction: column;
}

.powered-images {
    display: flex;
    gap: 20px;
    align-items: center;
}

.powered-img {
    width: 150px;
    height: 250px;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

.powered-img::before {
    content: '';
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}



.powered-title {
    font-size: 64px;
    line-height: 1;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.powered-description {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 35px;
    max-width: 500px;
    font-weight: 300;
}

/* ========================================
   ZORDAVEX SECTION
======================================== */
.zordavex {
    padding: 100px 0;
   
}

.zordavex-title {
    font-size: 80px;
    line-height: 0.9;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: -2px;
}

.zordavex-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.zordavex-card {
    position: relative;
    overflow: hidden;
   
}

.zordavex-card-image {
    width: 100%;
   
    position: relative;
}

.zordavex-card-image img {
    width: 100%;
}

.zordavex-card-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.zordavex-community::before {
    background-image: url(/wp-content/themes/techfile_itchyfzw/assets/images/community.jpg);
}

.zordavex-games::before {
    background-image: url(/wp-content/themes/techfile_itchyfzw/assets/images/games.jpg);
}

.zordavex-fun::before {
    background-image: url(/wp-content/themes/techfile_itchyfzw/assets/images/fun.jpg);
}

.zordavex-card-title {
    position: absolute;
    bottom: 30px;
    left: 30px;
    font-size: 36px;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

/* ========================================
   MATCHMAKING SECTION
======================================== */
.matchmaking {
    padding: 100px 0;
   
}

.matchmaking-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin-bottom: 50px;
    max-width: 1200px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.matchmaking-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    border-radius: 30px 0 0 30px;
    position: relative;
    overflow: hidden;
}

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

.matchmaking-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url(/wp-content/themes/techfile_itchyfzw/assets/images/matchmaking.jpg);
    background-size: cover;
    background-position: center;
}



.matchmaking-text {
    background: #ff5588;
    padding: 40px 30px;
    border-radius: 0 30px 30px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.matchmaking-title {
    font-size: 90px;
   
    margin-bottom: 35px;
    text-transform: uppercase;
    letter-spacing: -2px;
}

.matchmaking-title .title-outline {
    color: transparent;
    -webkit-text-stroke: 3.5px #1a1a1a;
    text-stroke: 3.5px #1a1a1a;
    display: block;
    -webkit-text-fill-color: transparent;
}

.matchmaking-title .title-solid {
    color: #000000;
    display: block;
}

.matchmaking-description {
    font-size: 17px;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    font-weight: 700;
    color: #000000;
}

.btn-matchmaking {
    display: block;
    margin: 0 auto;
}

/* ========================================
   CONNECT SECTION
======================================== */
.connect {
    padding: 100px 0;
    background: #0a0a0a;
}

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

.connect-title {
    font-size: 70px;
    line-height: 1;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.connect-description {
    font-size: 15px;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin-bottom: 35px;
    max-width: 500px;
    font-weight: 300;
}

.connect-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: flex-end;
}

.connect-btn {
    padding: 18px 35px;
    font-size: 16px;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 400;
    color: #0a0a0a;
}

.connect-btn:hover {
    transform: scale(1.05);
}

.connect-btn-cyan {
    background: #00d4ff;
}

.connect-btn-pink {
    background: #ff3366;
    color: #ffffff;
}

.connect-btn-orange {
    background: #ff9933;
}

.connect-btn-red {
    background: #ff0033;
    color: #ffffff;
}

.connect-btn-blue {
    background: #3366ff;
    color: #ffffff;
}

.connect-btn-yellow {
    background: #ffcc00;
}

.connect-btn-green {
    background: #a3ff12;
}

/* ========================================
   GAMES SHOWCASE SECTION
======================================== */
.games-showcase {
    padding: 80px 0 100px;
    background: #0a0a0a;
}

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

.game-card {
    position: relative;
   
    aspect-ratio: 3/4;
    color: #fff;
    text-decoration: none;
    display: flex;
    flex-direction: column;
}

.game-image {
    width: 100%;
    height: 100%;
   
    position: relative;
}

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

.game-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.game-quack::before {
    background-image: url(/wp-content/themes/techfile_itchyfzw/assets/images/quack-quest.jpg);
}

.game-fluffy::before {
    background-image: url(/wp-content/themes/techfile_itchyfzw/assets/images/fluffy-ow.jpg);
}

.game-apple::before {
    background-image: url(/wp-content/themes/techfile_itchyfzw/assets/images/apple-worm.jpg);
}

.game-venge::before {
    background-image: url(/wp-content/themes/techfile_itchyfzw/assets/images/venge.jpg);
}

.game-stickman::before {
    background-image: url(/wp-content/themes/techfile_itchyfzw/assets/images/stickman-hook.jpg);
}

.game-doctor::before {
    background-image: url(/wp-content/themes/techfile_itchyfzw/assets/images/doctor-hero.jpg);
}

.game-title {
    
    font-size: 32px;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
    line-height: 1;
}

.game-subtitle {
    font-size: 18px;
    display: block;
    margin-top: 5px;
}

/* ========================================
   FOOTER
======================================== */
.footer {
    padding: 80px 0 30px;
    background: #0a0a0a;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-logo a {
    font-size: 22px;
    letter-spacing: 2px;
    font-weight: 400;
}

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

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

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

.social-twitter {
    background: #1da1f2;
}

.social-facebook {
    background: #4267B2;
}

.social-link:hover {
    transform: scale(1.1);
}

.footer-info p {
    font-size: 14px;
    font-family: Arial, sans-serif;
    margin-bottom: 8px;
    font-weight: 300;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.footer-column h4 {
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 400;
}

.footer-column a {
    display: block;
    font-size: 14px;
    font-family: Arial, sans-serif;
    margin-bottom: 12px;
    transition: color 0.3s ease;
    font-weight: 300;
}

.footer-column a:hover {
    color: #a3ff12;
}

.footer-right {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
}

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

.footer-bottom p {
    font-size: 13px;
    font-family: Arial, sans-serif;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
}

/* ========================================
   RESPONSIVE - TABLET
======================================== */
@media (max-width: 1023px) {
    .burger-menu {
        display: flex;
    }
    
    .nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(10px);
        padding: 30px 20px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }
    
    .nav-list a {
        font-size: 20px;
    }
    
    .btn-header {
        display: none;
    }

    .hero {
        min-height: auto;
    }
    
    .hero-title {
        font-size: 72px;
    }
    
    .hero-content {
        flex-direction: column-reverse;
        gap: 30px;
    }

    .hero-images {
        max-width: 650px;
        width: 100%;
        margin-right: 0;

    }

    .hero-images img {
        width: 120%;
    }
    
    .powered-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .powered-title {
        font-size: 50px;
    }
    
    .zordavex-title {
        font-size: 60px;
    }
    
    .zordavex-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .matchmaking-content {
        grid-template-columns: 1fr;
    }
    
    .matchmaking-image {
        border-radius: 30px 30px 0 0;
        aspect-ratio: 4/3;
    }
    
    .matchmaking-image::after {
        width: 120px;
        height: 120px;
    }
    
    .matchmaking-text {
        border-radius: 0 0 30px 30px;
        padding: 50px 40px;
    }
    
    .matchmaking-title {
        font-size: 70px;
    }
    
    .connect-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .connect-title {
        font-size: 55px;
    }
    
    .connect-buttons {
        justify-content: center;
    }
    
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-right {
        justify-content: center;
    }
}

/* ========================================
   RESPONSIVE - MOBILE
======================================== */
@media (max-width: 768px) {
    .hero {
        padding: 140px 0 60px;
    }
    
    .hero-title {
        font-size: 64px;
    }
    
    .hero-image-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .powered {
        padding: 60px 0;
        background-size: 80%;
    }

    .powered-title {
        font-size: 64px;
    }
    
    .powered-images {
        flex-direction: column;
        align-items: center;
    }
    
    .powered-img {
        width: 200px;
    }
    
    .powered-img-2 {
        transform: translateY(0);
    }
    
   
    
    .zordavex {
        padding: 60px 0;
    }
    
    .zordavex-title {
        font-size: 45px;
    }
    
    .zordavex-grid {
        grid-template-columns: 1fr;
    }
    
    .zordavex-card-title {
        font-size: 28px;
        bottom: 20px;
        left: 20px;
    }
    
    .matchmaking {
        padding: 60px 0;
    }
    
    .matchmaking-image {
        aspect-ratio: 1;
    }
    
    .matchmaking-image::after {
        width: 80px;
        height: 80px;
    }
    
    .matchmaking-text {
        padding: 40px 30px;
    }
    
    .matchmaking-title {
        font-size: 55px;
    }
    
    .matchmaking-title .title-outline {
        -webkit-text-stroke: 2.5px #1a1a1a;
        text-stroke: 2.5px #1a1a1a;
    }
    
    .connect {
        padding: 60px 0;
    }
    
    .connect-title {
        font-size: 40px;
    }
    
    .connect-btn {
        padding: 15px 25px;
        font-size: 14px;
    }
    
    .games-showcase {
        padding: 60px 0 80px;
    }
    
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .game-title {
        font-size: 26px;
        bottom: 20px;
        left: 20px;
    }
    
    .footer {
        padding: 60px 0 25px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }
    
    .cookie-accept,
    .cookie-decline {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 42px;
    }
    
    .powered-title {
        font-size: 32px;
    }
    
    .zordavex-title {
        font-size: 36px;
    }
    
    .matchmaking-title {
        font-size: 40px;
    }
    
    .matchmaking-title .title-outline {
        -webkit-text-stroke: 2px #1a1a1a;
        text-stroke: 2px #1a1a1a;
    }
    
    .connect-title {
        font-size: 32px;
    }
    
    .game-title {
        font-size: 22px;
    }
}

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

              
                

                