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

:root {
    --primary-red: #FF1744;
    --dark-bg: #1D1A20;
    --dark-card: #1a1a1a;
    --text-white: #ffffff;
    --text-gray: #b0b0b0;
    --gradient-start: #FF6B35;
    --gradient-end: #4ECDC4;
}

body {
    font-family: 'Saira Extra Condensed', sans-serif;
    background-color: #1D1A20;
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(10px);
    padding: 20px;
    z-index: 10000;
    border-top: 2px solid var(--primary-red);
    transform: translateY(100%);
    transition: transform 0.3s 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: 20px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
    font-size: 14px;
    color: var(--text-gray);
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 10px 25px;
    border: none;
    border-radius: 4px;
    font-family: 'Saira Extra Condensed', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

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

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

.cookie-btn.decline {
    background: transparent;
    color: var(--text-gray);
    border: 1px solid var(--text-gray);
}

.cookie-btn.decline:hover {
    color: white;
    border-color: white;
}

.cookie-link {
    color: var(--text-gray);
    text-decoration: underline;
    font-size: 14px;
    transition: color 0.3s ease;
}

.cookie-link:hover {
    color: white;
}

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

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-white);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 2px;
}

.logo img {
    width: 30px;
  
}

.logo-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 15px;
    height: 15px;
    background: var(--dark-bg);
    border-radius: 50%;
}

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

.nav-link {
    color: var(--text-white);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    position: relative;
}

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

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

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

/* Burger Button */
.burger-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

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

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

/* Hero Section */
.hero {
    padding: 150px 0 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(255, 23, 68, 0.1) 0%, rgba(10, 10, 10, 0.9) 100%);
    background-image: url(/wp-content/themes/techfile_lnxvf7lp/assets/images/h-bcg.webp);
    background-position: center;
    background-size: cover;
}

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

.hero-text {
    position: relative;
    z-index: 3;
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-description {
    font-size: 18px;
 
    margin-bottom: 30px;
    line-height: 1.8;
}

.btn-primary {
    display: inline-block;
    padding: 15px 40px;
    background: var(--primary-red);
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #d31336;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 23, 68, 0.4);
}

.hero-image img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(255, 23, 68, 0.3));
    animation: float 3s ease-in-out infinite;
}

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

/* About Section */
.about {
    padding: 100px 0 0;
    background: var(--dark-bg);
    background-image: url(/wp-content/themes/techfile_lnxvf7lp/assets/images/abcg.webp);
    background-position: center;
    background-size: cover;
}

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

.about-image img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(255, 23, 68, 0.2));
    display: block;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100px;
    height: 4px;
    background: var(--primary-red);
}

.about-text p {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.8;
}

/* Review Section */
.review {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--dark-bg) 0%, #0f0f0f 100%);
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 50px;
    max-width: 900px;
}

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

.review-card {
    background-image: url(/wp-content/themes/techfile_lnxvf7lp/assets/images/ibcg.webp);
    background-size: 100% 100%;
    padding: 80px 30px;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-red), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.review-card:hover {
    border-color: var(--primary-red);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 23, 68, 0.2);
}

.review-card:hover::before {
    opacity: 1;
}

.card-decoration {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-red), transparent);
}

.card-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-text {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
}

/* Community Section */
.community {
    padding: 100px 0 0;
    background: var(--dark-bg);
    background-image: url(/wp-content/themes/techfile_lnxvf7lp/assets/images/abcg.webp);
    background-position: center;
    background-size: cover;
}

.community-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 80px;
   align-items: end;
}

.community-text {
    padding-bottom: 30px;
}

.community-intro {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.8;
}

.community-list {
    list-style: none;
    margin-bottom: 20px;
}

.community-list li {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    line-height: 1.8;
}

.community-list li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-size: 12px;
}

.community-list strong {
    color: var(--text-white);
    font-weight: 700;
}

.community-footer {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.8;
}

.community-image img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(255, 23, 68, 0.2));
    display: block;
}

/* Games Section */
.games {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--dark-bg) 0%, #0f0f0f 100%);
}

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

.game-card {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    background: var(--dark-card);
}

.game-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-red);
    box-shadow: 0 10px 30px rgba(255, 23, 68, 0.3);
}

.game-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

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

/* Footer */
.footer {
    padding: 60px 0 30px;
    background: #000000;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background-image: url(/wp-content/themes/techfile_lnxvf7lp/assets/images/footer.webp);
    background-position: center;
    background-size: cover;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

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

.footer-info {
    text-align: center;
    margin-bottom: 20px;
}

.footer-info p {
    color: var(--text-gray);
    font-size: 14px;
    margin-bottom: 5px;
}

.footer-info a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

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

.footer-social a:hover {
    border-color: var(--primary-red);
    transform: translateY(-3px);
}

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

.footer-copyright {
    text-align: center;
    color: var(--text-gray);
    font-size: 12px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.page-image {
    max-width: 400px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

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

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

    .nav {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 300px;
        height: calc(100vh - 70px);
        background: rgba(26, 26, 26, 0.98);
        backdrop-filter: blur(10px);
        padding: 40px 20px;
        transition: right 0.3s ease;
        border-left: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav.active {
        right: 0;
    }

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

    .nav-link {
        font-size: 20px;
    }

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

    .hero-title {
        
    }

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

    .review-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

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

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

/* Responsive Design - Mobile */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 100px 0 30px;
        min-height: auto;
        background-position: right center;
    }

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

    .hero-description {
        font-size: 16px;
    }

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

    .about-image {
        order: 2;
    }

   
    .review,
    .games {
        padding: 60px 0;
    }

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

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

    .footer-links {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-content p {
        min-width: 100%;
    }

    .cookie-buttons {
        justify-content: center;
    }
}

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

    .btn-primary {
        padding: 12px 30px;
        font-size: 16px;
    }

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

    .card-title {
        font-size: 20px;
    }

    .nav {
        width: 250px;
    }
    .review-grid {
       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;
              }

              
                

                