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

:root {
    --primary-color: #ff8c42;
    --secondary-color: #1a1d2e;
    --dark-bg: #0a0e1a;
    --text-light: #ffffff;
    --text-gray: #b0b8c8;
    --accent-blue: #2d4a7c;
    --card-bg: #141829;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Quantico', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--secondary-color);
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

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

.cookie-content p {
    margin: 0;
    color: var(--text-gray);
    font-size: 14px;
}

.cookie-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

.cookie-btn {
    background: var(--primary-color);
    color: var(--text-light);
    border: none;
    padding: 10px 30px;
    border-radius: 25px;
    cursor: pointer;
    font-family: 'Quantico', sans-serif;
    font-weight: 700;
    font-size: 14px;
    transition: background 0.3s ease;
}

.cookie-btn:hover {
    background: #ff7a28;
}

/* Header */
.header {
    background: rgba(10, 14, 26, 0.95);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 999;
    backdrop-filter: blur(10px);
    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-light);
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 1px;
}

.logo-icon {
    font-size: 24px;
}

.nav {
    display: flex;
    gap: 40px;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 400;
    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 Menu */
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

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

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

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

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

/* Hero Section */
.hero {
    padding: 180px 0 120px;
    background: linear-gradient(180deg, var(--secondary-color) 0%, var(--dark-bg) 100%);
    background-image: url(/wp-content/themes/techfile_lh79ebis/assets/images/hero.webp);
    background-position: center;
    background-size: cover;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url(/wp-content/themes/techfile_lh79ebis/assets/images/hero-pattern.png) repeat;
    opacity: 0.05;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--text-light);
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 40px;
    border-radius: 12px;
background: #DB7B17;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: 'Quantico', sans-serif;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--text-light);
}

.btn-primary:hover {
    background: #ff7a28;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 140, 66, 0.3);
}

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

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

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: auto;
   display: block;
}

.about-content {
    padding: 20px;
}

.about-content h3 {
    padding: 16px 0;
}

.section-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--text-light);
}

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

/* Testing Section */
.testing {
    padding: 100px 0;
    background: var(--secondary-color);
    background-image: url(/wp-content/themes/techfile_lh79ebis/assets/images/ibcg.webp);
    background-position: center;
    background-size: cover;
    position: relative;
    overflow: hidden;
}

.testing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url(/wp-content/themes/techfile_lh79ebis/assets/images/testing-pattern.png) repeat;
    opacity: 0.03;
}

.testing-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.testing-content {
    max-width: 600px;
}

.testing .section-title {
    text-align: left;
    margin-bottom: 20px;
}

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

.testing-list {
    list-style: none;
    margin-bottom: 30px;
    padding-left: 0;
}

.testing-list li {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    line-height: 1.7;
}

.testing-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 24px;
    line-height: 1;
}

.testing-list li strong {
    color: var(--text-light);
    font-weight: 700;
}

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

.testing-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: -100px;
}

.testing-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    display: block;
    animation: float 6s ease-in-out infinite;
    border-radius: 50%;
}

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

/* Why Choose Section */
.why-choose {
    padding: 100px 0;
    background: var(--dark-bg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: var(--card-bg);
    padding: 40px 30px;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border-color: var(--primary-color);
}

.feature-card h3 {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 15px;
}

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

/* Tips Section */
.tips {
    padding: 80px 0 0;
    background: var(--secondary-color);
    background-image: url(/wp-content/themes/techfile_lh79ebis/assets/images/tbcg.webp);
    background-position: center;
    background-size: cover;
    overflow: hidden;
}

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

.tips-intro {
    font-size: 15px;
    color: var(--text-gray);
    margin-bottom: 30px;
    line-height: 1.8;
}

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

.tips-list strong {
    color: var(--text-light);
    font-size: 16px;
}

.tips-image {
    position: relative;
    margin-right: -100px;
}

.tips-image img {
    width: 100%;
    height: auto;
   display: block;
}

/* Games Library Section */
.games-library {
    padding: 140px 0 100px;
    background: var(--dark-bg);
}

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

.games-text {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 50px;
    text-align: center;
    line-height: 1.8;
}

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

.game-card {
   
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    border: 1px var(--primary-color) solid;
}

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

/* Footer */
.footer {
    background: var(--secondary-color);
    padding: 50px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background-image: url(/wp-content/themes/techfile_lh79ebis/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;
    transition: color 0.3s ease;
}

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

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

.footer-info p {
    font-size: 13px;
    color: var(--text-gray);
    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-color);
}

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

.social-link img {
    width: 40px;
}
/* Responsive Design */

/* Tablet */
@media (max-width: 1023px) {
    .nav {
        position: fixed;
        top: 70px;
        right: -100%;
        background: var(--secondary-color);
        flex-direction: column;
        width: 300px;
        height: calc(100vh - 70px);
        padding: 40px;
        gap: 30px;
        transition: right 0.3s ease;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
    }

    .nav.active {
        right: 0;
    }

    .burger {
        display: flex;
    }

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

    .about-grid,
    .tips-grid,
    .testing-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        order: 2;
        max-width: 350px;
        height: 400px;
        margin: 0 auto;
    }

    .testing-grid {
        direction: ltr;
    }

    .testing-content {
        direction: ltr;
        max-width: 100%;
    }

    .testing .section-title {
        text-align: center;
    }

    .testing-image {
        order: -1;
    }

    .tips-grid {
        direction: rtl;
    }

    .tips-content {
        direction: ltr;
    }

    .tips-image {
        max-width: 400px;
    }

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

    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

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

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

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

    .hero-text {
        font-size: 14px;
    }

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

    .testing .section-title {
        text-align: center;
    }

  
    .testing,
    .why-choose
    {
        padding: 60px 0;
    }

    .testing-list li {
        font-size: 15px;
    }

    .testing-image img {
        max-width: 350px;
    }

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

    .games-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }

    .footer-links {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

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

    .nav {
        width: 100%;
        right: -100%;
    }
}

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

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

    .testing .section-title {
        text-align: center;
    }

    .testing-intro,
    .testing-footer {
        font-size: 14px;
    }

    .testing-list li {
        font-size: 14px;
    }

    .testing-image img {
        max-width: 280px;
    }

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

    .feature-card {
        padding: 30px 20px;
    }

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

    .logo-text {
        font-size: 16px;
    }
}

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

              
                

                