/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

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

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

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

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

.cookie-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

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

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

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

.btn-accept {
    background: #8b5cf6;
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept:hover {
    background: #7c3aed;
    transform: translateY(-2px);
}

.btn-refuse {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    padding: 10px 30px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-refuse:hover {
    background: #fff;
    color: #000;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(139, 92, 246, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 6px;
}

.logo img {
    width: 30px;
}

.logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
}

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

.nav-list a {
    color: #fff;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
}

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-games {
    background: #fff;
    color: #8b5cf6;
    padding: 8px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-games:hover {
    background: #f3f4f6;
    transform: translateY(-1px);
}

.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: #fff;
    transition: all 0.3s ease;
}

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

.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 {
    background: #8b5cf6;
    padding: 120px 0 180px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow-x: clip;
}

.marq {
    position: absolute;
    bottom: -5%;
  filter: drop-shadow(0 4px 62.7px rgba(0, 0, 0, 0.45));
  left: 50%;
  transform: translateX(-50%);
  width: 110%;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap:40px;
    align-items: center;
}

.hero-text {
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.hero-text h1 {
    font-size: 6rem;
    font-weight: 900;
    line-height: 1.1;
    text-align: center;
}

.hero-text p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    max-width: 300px;
}

.hero-avatars {
    max-width: 212px;
    width: 100%;
}

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

.avatar-group {
    display: flex;
    gap: -10px;
}

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid #fff;
    margin-left: -10px;
}

.avatar:first-child {
    margin-left: 0;
}

.hero-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 1080px;
    width: 100%;
}

.hero-image-card {
    border-radius: 20px;
    overflow: hidden;
   
}

.hero-img {
    width: 100%;
    object-fit: cover;
    display: block;
    height: 100%;
}

.platform-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.platform-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
}

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

.about h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 60px;
    color: #fff;
}

.about-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    border-radius: 20px;
    overflow: hidden;
}

.game-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.about-description {
    font-size: 1rem;
    color: #ccc;
    margin-bottom: 40px;
    line-height: 1.6;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    border-radius: 40px;
background: rgba(255, 255, 255, 0.10);
}

.stat-number {
    font-size: 2rem;
    font-weight: 900;
    color: #fff;
}

.stat-label {
    font-size: 0.9rem;
    color: #888;
    font-weight: 400;
}

/* Games Section */
.games {
    background: #8b5cf6;
    padding: 100px 0;
}

.games h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 60px;
    color: #fff;
}

.games-categories {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.category-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid transparent;
    margin-bottom: 10px;
    border-radius: 50px;
    font-size: 2.2rem;
    font-weight: 500;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-item:hover,
.category-item.active {
    background: #000;
    border-color: #fff;
}

.category-arrow {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
    background-image: url(/wp-content/themes/techfile_6v9u37eg/assets/images/arr.png);
    background-size: 100% 100%;
    width: 24px;
    height: 24px;
}

.category-item:hover .category-arrow {
    transform: translateX(5px);
}

/* Community Section */
.community {
    background: #000;
    padding: 100px 0;
}

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

.community-text {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.community h2 {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
    color: #fff;
}

.community-text p {
    font-size: 1rem;
    color: #ccc;
    line-height: 1.6;
    width: 40%;
}

.community-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.community-image {
    border-radius: 20px;
    overflow: hidden;
}

.community-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

/* Footer */
.footer {
    background: #8b5cf6;
    padding: 60px 0 30px;
}

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

.footer-logo {
    font-size: 10vw;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    text-align: center;
}

.footer-details p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

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

.footer-column a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

.footer-social p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: #fff;
    color: #8b5cf6;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

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

.social-link:hover {
    background: #f3f4f6;
    transform: translateY(-2px);
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
}

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

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

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

.about-game {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
}

.about-game p {
    max-width: 366px;
    width: 100%;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .burger-btn {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(139, 92, 246, 0.98);
        backdrop-filter: blur(10px);
        transform: translateY(-100%);
        transition: transform 0.3s ease;
        opacity: 0;
        visibility: hidden;
    }

    .nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

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

    .hero {
        padding-bottom: 120px;
        min-height: auto;
    }

    .hero-text h1 {
        font-size: 5.5rem;
        order: 1;
    }

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

    .hero-images {
       
    }

    .hero-image-card {
        height: 320px;
    }

    .about-main {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .community-content {
        grid-template-columns: 1fr;
        gap: 40px;
       
    }

    .community-text {
        flex-direction: column;
        align-items: flex-start;
    }

    .community-text p {
        width: 90%;
    }

    .community-images {
        grid-template-columns: 1fr;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

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

    .cookie-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-accept,
    .btn-refuse {
        width: 200px;
    }

    .social-icons {
        justify-content: center;
    }

    .platform-icons {
        gap: 15px;
    }

    .platform-icon {
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 480px) {
    .marq {
        width: 140%;
    }
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 100px 0 40px;
    }

    .hero-text h1 {
        font-size: 4rem;
    }

    .about h2,
    .games h2,
    .community h2 {
        font-size: 2rem;
    }

    .footer-logo {
        font-size: 2rem;
    }

    .cookie-content h2 {
        font-size: 1.5rem;
    }

    .category-item {
        padding: 20px;
        font-size: 1rem;
    }
    .game-item {
      flex: 0 1 46%;
    }
}

.page-title {
    font-size: 10vw;
    line-height: 0.9;
}

/* Animation classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

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

              
                

                