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

:root {
    --primary-color: #d946a3;
    --secondary-color: #f472b6;
    --accent-color: #ec4899;
    --dark-bg: #1a0b1a;
    --darker-bg: #0f0609;
    --text-light: #f8fafc;
    --text-muted: #cbd5e1;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    
    --font-primary: 'Lora', serif;
    --font-accent: 'Kapakana', sans-serif;
    
    --shadow-soft: 0 4px 20px rgba(217, 70, 163, 0.3);
    --shadow-hard: 0 8px 32px rgba(217, 70, 163, 0.4);
    
    --border-radius: 12px;
    --border-radius-lg: 24px;
}

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

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

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

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

.cookie-content {
    max-width: 600px;
    margin: 0 auto;
}

.cookie-content h3 {
    font-family: var(--font-accent);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

.cookie-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.btn {
    padding: 0.75rem 2rem;
    border: none;
    font-family: var(--font-primary);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    background: #AEFFF8;
box-shadow: 0 3px 0 0 #000;
}

.btn-accept {
    background: var(--primary-color);
    color: white;
}

.btn-accept:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

.btn-manage {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--glass-border);
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-image: url(/wp-content/themes/techfile_pwba7948/assets/images/header.webp);
    background-position: center;
    background-size: cover;
    transition: all 0.3s ease;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-accent);
    font-size: 54px;
    font-weight: 600;
    color: var(--text-light);
    line-height: 1;
    text-decoration: none;
}

.nav-brand img {
    width: 32px;
}

.brand-icon {
    color: var(--primary-color);
    font-size: 1.5rem;
}

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

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

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

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

.burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.burger span {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    transition: all 0.3s ease;
    border-radius: 3px;
}

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

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

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 2rem 6rem;
    position: relative;
    overflow: hidden;
    background-image: url(/wp-content/themes/techfile_pwba7948/assets/images/hero-bcg.webp);
    background-position: center;
    background-size: cover;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(217, 70, 163, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(244, 114, 182, 0.2) 0%, transparent 50%);
    z-index: -1;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
   
}

.hero h1 {
    font-family: var(--font-accent);
    font-size: 4rem;
    font-weight: 400;
    font-style: italic;
    line-height: 1.2;

    color: #AEFFF8;
font-size: 160px;
font-style: normal;
font-weight: 400;
line-height: 70%; /* 112px */
}

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2rem;
    align-self: flex-end;
    position: relative;
    z-index: 4;
}

.cta-text h2 {
    font-family: var(--font-accent);
    font-size: 149px;
    font-style: italic;
    margin-bottom: 1rem;
    color: #AEFFF8;
    line-height: 1;
}

.cta-text p {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 410px;
    text-align: right;
}

.btn-launch {

    color: #000;
    font-size: 1.1rem;
    padding: 1rem 2rem;
    transition: all 0.3s ease;
    background: #AEFFF8;
box-shadow: 0 3px 0 0 #000;
}

.btn-launch:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hard);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}



/* About Section */
.about {
    padding: 9rem 15px;
    background-image: url(/wp-content/themes/techfile_pwba7948/assets/images/ab-bcg.webp);
    background-position: center top;
    background-repeat: no-repeat;
    height: 866px;
    background-size: cover;
    position: relative;
    z-index: 3;
    margin-top: -10%;
}

.about-header {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
}

.about h2 {
    font-family: var(--font-accent);
    font-size: 140px;
    font-style: italic;

    margin-bottom: 2rem;
    line-height: 1;
}

.about-header p {
text-align: right;
    max-width: 400px;
    font-size: 1.1rem;
 
}

.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 20px;
}

.stat-item {
    text-align: right;
    padding: 2rem;
    

    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-item h3 {
    font-family: var(--font-accent);
    font-size: 2.5rem;
line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-item p {
    line-height: 1;

    font-size: 1.1rem;
}

/* Games Section */
.games {
    margin-top: -7%;
    padding: 10rem 2rem 6rem;
    position: relative;
    overflow: hidden;
    background-image: url(/wp-content/themes/techfile_pwba7948/assets/images/sl-bcg.png);
    background-size: cover;
}

.swiper {
    margin-right: 0;
}

.games::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(/wp-content/themes/techfile_pwba7948/%23grain)"/></svg>');
    z-index: -1;
}

.games-content {
    max-width: 1200px;
    margin: 0 auto;
}

.games h2 {
    font-family: var(--font-accent);
    font-size: 120px;
    font-style: italic;
    margin-bottom: 4rem;
    line-height: 1.2;
    line-height: 1;
    color: #fff;
}

.game-card {
    background: var(--glass-bg);
  
 
    overflow: hidden;
    transition: transform 0.3s ease;
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hard);
}

.game-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.pink-texture {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="texture" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M0,20 L20,0" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(/wp-content/themes/techfile_pwba7948/%23texture)"/></svg>');
}

.white-texture {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="texture2" width="15" height="15" patternUnits="userSpaceOnUse"><circle cx="7.5" cy="7.5" r="1" fill="rgba(0,0,0,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(/wp-content/themes/techfile_pwba7948/%23texture2)"/></svg>');
}

.blue-texture {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="texture3" width="25" height="25" patternUnits="userSpaceOnUse"><polygon points="12.5,0 25,12.5 12.5,25 0,12.5" stroke="rgba(255,255,255,0.1)" stroke-width="1" fill="none"/></pattern></defs><rect width="100" height="100" fill="url(/wp-content/themes/techfile_pwba7948/%23texture3)"/></svg>');
}

.purple-texture {
    background: linear-gradient(135deg, #8b5cf6, #6d28d9);
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="texture4" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="2" fill="rgba(255,255,255,0.08)"/><circle cx="5" cy="5" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(/wp-content/themes/techfile_pwba7948/%23texture4)"/></svg>');
}

/* Swiper Styles */
.games-swiper {
    width: 75%;
    padding: 2rem 0 0;
    margin-left: auto;
}

.games-swiper .swiper-slide {
    height: auto;
    display: flex;
}

.games-swiper .game-card {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.slider-inner {
    width: 100%;
    display: flex;
    align-items: flex-end;
}

/* Swiper Navigation */

.arrows {
    display: flex;
    gap: 20px;
}

.swiper-button-next.games-next,
.swiper-button-prev.games-prev {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    left: 0;
    right: 0;
}

.swiper-button-next.games-next::after,
.swiper-button-prev.games-prev::after {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-light);
}

.swiper-button-next.games-next:hover,
.swiper-button-prev.games-prev:hover {
    background: var(--primary-color);
    transform: scale(1.1);
    box-shadow: var(--shadow-soft);
}

.swiper-button-next.games-next.swiper-button-disabled,
.swiper-button-prev.games-prev.swiper-button-disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.swiper-button-next.games-next.swiper-button-disabled:hover,
.swiper-button-prev.games-prev.swiper-button-disabled:hover {
    transform: none;
    background: var(--glass-bg);
}

/* Swiper Pagination */
.swiper-pagination.games-pagination {
    bottom: 0;
}

.swiper-pagination.games-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    opacity: 1;
    transition: all 0.3s ease;
}

.swiper-pagination.games-pagination .swiper-pagination-bullet-active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: scale(1.2);
    box-shadow: var(--shadow-soft);
}

.game-card {
    padding: 11px 14px;
    background: #fff;
}

.game-card img {
    width: 100%;
    margin: 10px 0;
}

.game-card h3 {
    font-family: var(--font-accent);
    font-size: 1.3rem;
    width: 100%;
    text-align: center;
    background-color: #000;
   padding: 16px;
    color: var(--text-light);
}

.game-card p {
    margin: 0 1.5rem 1.5rem;
    line-height: 1.5;
}

/* Featured Section */
.featured {
    padding: 6rem 2rem;
   
}

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

.featured h2 {
    font-family: var(--font-accent);
    font-size: 3rem;
    font-style: italic;
    margin-bottom: 3rem;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--text-light), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.featured-games {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.featured-game {
    aspect-ratio: 1;
    background: var(--glass-bg);
    border-radius: var(--border-radius);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.featured-game::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.7;
}

/* Footer */
.footer {
  background-image: url(/wp-content/themes/techfile_pwba7948/assets/images/foot.webp);
  background-repeat: no-repeat;
  background-position: right bottom;
 background-size: 60%;
    padding: 4rem 2rem 2rem;
  
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-brands {
    display: flex;
    width: 100%;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brands img {
    width: 100%;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-accent);
    font-size: 1.2rem;
    color: var(--text-light);
}

.footer-brand .brand-icon {
    color: var(--primary-color);
}

.footer-info {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 12rem;
    flex-wrap: wrap;
}

.footer-column a {
    color: var(--text-light);
    text-decoration: none;
    font-family: var(--font-accent);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--primary-color);
}

.footer-column span {
    color: #000;
    font-size: 0.9rem;
}

.footer-bottom {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding-top: 2rem;
   
}

.keyboard-keys {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}



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

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.social-link:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-soft);
}

.footer-legal {
    text-align: center;
    
    font-size: 0.8rem;
}

.footer-links {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

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

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

.catalog {
    background-image: url(/wp-content/themes/techfile_pwba7948/assets/images/cat-bcg.webp);
    background-position: center;
    background-size: cover;
    padding: 140px 0 120px;
}

.cat-inner {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.cat-img {
    max-width: 400px;
    width: 100%;
}

.cat-img img {
    width: 100%;
}

.cat-title {
    color: #AEFFF8;
text-align: right;

font-family: Kapakana;
font-size: 120px;
font-style: normal;
font-weight: 400;
line-height: 70%; 
}

.cat-cont, .page-cont {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-end;

}

.cat-cont p {
    color: #fff;
    text-align: right;
}

.cat-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(2, 1fr);
    margin: 50px 0;
    gap: 20px;
}

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

.div3 {
    grid-column: span 2 / span 2;
    grid-row: span 2 / span 2;
    grid-column-start: 2;
    grid-row-start: 1;
}

.div4 {
    grid-column-start: 4;
    grid-row-start: 1;
}

.div5 {
    grid-column-start: 4;
    grid-row-start: 2;
}

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


.cat-item {
    width: 100%;
    flex: 0 1 46%;
}

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

.game-page {
    padding: 140px 0 100px;
}


/* Responsive Design */
@media (max-width: 1023px) {
    .hero-content {
        grid-template-columns: 1fr;
    }
    
    .hero-text {
        text-align: center;
        order: 2;
    }
    
    .hero-image {
        order: 1;
        margin-bottom: 2rem;
    }
    
    .hero-text h1 {
        font-size: 3rem;
    }
    
    .cta-text {
        text-align: center;
    }
    
    .hero-cta {
        align-items: center;
    }
    
    .stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .featured-games {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Swiper responsive */
    .swiper-button-next.games-next,
    .swiper-button-prev.games-prev {
        display: none;
    }
}

@media (max-width: 768px) {
    .burger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(26, 11, 26, 0.95);
        backdrop-filter: blur(20px);
        border-top: 1px solid var(--glass-border);
        transition: all 0.3s ease;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        top: 0;
    }
    
    .nav-list {
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
    }
    
    .hero {
        padding: 6rem 1rem 6rem;
        min-height: auto;
    }
    
    .hero h1 {
        font-size: 8.5rem;
    }
    
    .cta-text h2 {
        font-size: 72px;
    }

    .about {
        min-height: 960px;
    }

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

    .about-header p {
        max-width: 100%;
    }
    
    .about h2,
    .games h2,
    .featured h2 {
        font-size: 5rem;
        margin-bottom: 0;
    }

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

    }

    .stat-item {
        padding: 0;
        flex: 0 1 45%;
    }

    .games {
        margin-top: -44%;
    }

    .games-swiper {
        width: 100%;
    }

    .footer {
        background-size: 100%;
    }
    
    .footer-brands,
    .footer-info {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .footer-info {
        margin-bottom: 20px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-consent {
        padding: 1.5rem;
    }
}

@media (max-width: 550px) {
    .hero h1 {
        font-size: 6rem;
    }
    
    .cta-text h2 {
        font-size: 3.5rem;
    }
    
    .about h2,
    .games h2,
    .featured h2 {
        font-size: 3.5rem;
    }

    .about-header p {
        font-size: 14px;
    }

    .cat-inner {
        flex-direction: column;
    }

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

    .games {
        margin-top: -82%;
    }
    
    .game-cube {
        width: 200px;
        height: 200px;
    }
    
    .featured-games {
        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;
              }

              
                

                