@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Dubai', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #000;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.95);
    border: 2px solid #00a8cc;
    border-radius: 15px;
    padding: 30px;
    max-width: 600px;
    width: 90%;
    text-align: center;
    z-index: 10000;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 168, 204, 0.3);
}

.cookie-consent.hidden {
    display: none;
}

.cookie-content h3 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.cookie-content p {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 25px;
    opacity: 0.9;
}

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

.cookie-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: capitalize;
}

.accept-btn {
    background: #00a8cc;
    color: white;
}

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

.learn-btn {
    background: #007a9a;
    color: white;
}

.learn-btn:hover {
    background: #006885;
    transform: translateY(-2px);
}

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

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

.logo {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
}

.logo span {
    color: #0097CD;
}

.logo img {
    width: 30px;
    height: 30px;
    margin-right: 10px;
}

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

.nav-list a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    transition: all 0.3s ease;
    position: relative;
}

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

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #00a8cc;
    transition: width 0.3s ease;
}

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

.contact-btn {
    background: #ffffff;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-btn a {
    color: #000000;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

.contact-btn:hover {
    background: #00a8cc;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 168, 204, 0.4);
}

.contact-btn:hover a {
    color: #ffffff;
}

.burger-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.burger-btn span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 3px;
}

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

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

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background-image: url(/wp-content/themes/techfile_qy46e5y0/assets/images/hero-bcg.webp);
    background-position: center;
    background-size: cover;
    padding-top: 80px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
    width: 100%;
}

.hero-text {
    max-width: 240px;
}

.hero-title {
    font-size: 92px;
    font-weight: 700;
    line-height: 0.9;
    margin-bottom: 30px;
    text-transform: lowercase;
     font-family: "Montserrat", sans-serif;
}

.title-part {
    color: #ffffff;
}

.title-highlight {
    color: #00a8cc;
}

.hero-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    line-height: 1.6;
}

.play-btn {
    background: linear-gradient(45deg, #00a8cc, #007a9a);
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: lowercase;
    text-decoration: none;
}

.play-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 168, 204, 0.4);
}

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

.snake-container {
    position: relative;
    width: 400px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-snake {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 30px rgba(0, 168, 204, 0.5));
}

.stats {
    
    background: rgba(0, 168, 204, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 168, 204, 0.3);
    border-radius: 15px;
    padding: 20px;
    min-width: 120px;
    max-width: 150px;
}

.stats-number {
    display: block;
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
}

.stats-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.3;
}

/* Why Choose Section */
.why-choose {
    padding: 100px 0;
   
}

.section-title {
    font-size: 64px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.2;
    text-transform: lowercase;
    font-family: "Montserrat", sans-serif;
}

.section-title .highlight {
    color: #00a8cc;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.feature-card {
    border-radius: 20px;
background: linear-gradient(180deg, #FFF 0%, #999 206.73%);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    color: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-card:nth-of-type(1) {
    border-radius: 120px 20px 20px 20px;
background: linear-gradient(180deg, #FFF 0%, #999 206.73%);
}

.feature-card:nth-of-type(4) {
    border-radius: 20px 120px 20px 20px;
background: linear-gradient(180deg, #FFF 0%, #999 206.73%);
}



.feature-card:nth-of-type(2) {
   background: #0097CD;
   color: #fff;
}

.feature-card.active::before,
.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 120px;
    height: 120px;
   margin-top: -100px;
    
}

.feature-icon img {
   width: 100%;
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
 
    text-transform: lowercase;
}

.feature-card p {
    font-size: 14px;
    
    line-height: 1.5;
}

/* Reviews Section */
.reviews {
    padding: 100px 0;
    background-image: url(/wp-content/themes/techfile_qy46e5y0/assets/images/reviews.png);
    background-size: cover;
    background-position: center;
}

.reviews-header {
    display: flex;
    align-items: flex-end;
    gap: 40px;
    margin-bottom: 60px;
}

.reviews-header h2 {
    font-size: 64px;
    font-weight: 700;
    color: #ffffff;
    text-transform: lowercase;
    font-family: "Montserrat", sans-serif;
}

.reviews-subtitle {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.2;
    text-transform: lowercase;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 20px;
 
}

.div1 {
    grid-column-start: 2;
}

.div2 {
    grid-column: span 2 / span 2;
    grid-column-start: 3;
}

.div3 {
    grid-row-start: 2;
}

.div4 {
    grid-column-start: 3;
    grid-row-start: 2;
}

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

.div6 {
    grid-column-start: 4;
    grid-row-start: 3;
}

.review-card {
    padding: 20px;
    border-radius: 15px;
    transition: all 0.3s ease;
    position: relative;
}

.review-card:hover {
    transform: translateY(-5px);
}

.review-card.white {
    background: #ffffff;
    color: #000000;
   
}

.review-card.blue {
    background: linear-gradient(135deg, #00a8cc, #007a9a);
    background-image: url(/wp-content/themes/techfile_qy46e5y0/assets/images/r-bcg.webp);
    background-size: cover;
    background-position: center;
    color: #ffffff;
    max-width: 490px;
    width: 100%;
}

.review-card.dark {
    background: rgba(0, 0, 0, 0.8);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.review-card p {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 20px;
    font-style: italic;
}

.reviewer {
    font-size: 16px;
    font-weight: 600;
    color: #00a8cc;
}

.review-card.white .reviewer {
    color: #007a9a;
}

.review-card.blue .reviewer {
    color: rgba(255, 255, 255, 0.9);
}

/* Footer */
.footer {
    padding: 80px 0 40px;
  background-image: url(/wp-content/themes/techfile_qy46e5y0/assets/images/footer-bcg.png);
  background-position: center top;
  background-size: cover;
    position: relative;
}

.footer-snake {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 60px;
}

.footer-snake img {
    max-width: 580px;
    width: 100%;
    height: auto;
   
}

.contact-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.contact-title {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 40px;
}

.footer-left .logo {
    margin-bottom: 30px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #00a8cc;
}

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

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

.social-links a:hover {
    background: #00a8cc;
    transform: translateY(-2px);
}

.social-links img {
    width: 100%;

}

.footer-right {
    text-align: right;
}

.contact-info {
    margin-bottom: 30px;
}

.contact-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-bottom: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-email {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    font-family: "Montserrat", sans-serif;
}

.copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

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


.cat1 {
    grid-column: span 2 / span 2;
    grid-row: span 2 / span 2;
}

.cat2 {
    grid-column-start: 3;
}

.cat3 {
    grid-column-start: 3;
    grid-row-start: 2;
}

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

.cat5 {
    grid-column-start: 6;
    grid-row-start: 1;
}

.cat6 {
    grid-column-start: 6;
    grid-row-start: 2;
}

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

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

.cat-text {
    border-radius: 120px 20px 20px 20px;
background: linear-gradient(180deg, #FFF 0%, #999 206.73%);
padding: 14px 14px 14px 60px;
color: #000000;
}

.game-card {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    padding: 60px 0;
}

.page-image {
    max-width: 333px;
    width: 100%;
}

/* Responsive Design */
@media (max-width: 1023px) {
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding: 30px 0;
    }

    .nav.active {
        display: block;
    }

    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .burger-btn {
        display: flex;
    }

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

    .hero-title {
       
    }

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

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

    .stats {
        position: relative;
        right: auto;
        margin-top: 20px;
    }

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

    .footer-right {
        text-align: center;
    }

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

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

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

    .hero-text {
        max-width: 500px;
    }

    .hero-visual {
        align-items: flex-start;
        justify-content: flex-start;
    }

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

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

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

    .review-card {
        flex: 0 1 46%;
        width: 100%;
    }

    .reviews-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }

    .snake-container {
        width: 300px;
        height: 300px;
    }

    .cookie-consent {
        margin: 10px;
        padding: 20px;
        width: calc(100% - 20px);
    }

    .cookie-buttons {
        flex-direction: column;
    }

    .footer-left {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

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

    .nav-wrapper .contact-btn {
       display: none;
    }
    .cat-grid {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }
    .game-card {
        flex-direction: column;
    }
}

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

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

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

    .contact-email {
        font-size: 18px;
    }
    .reviews-grid {
        flex-direction: column;
    }
}

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

              
                

                