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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background: #0A0A0A;
    color: #ffffff;
    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: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px;
    z-index: 10000;
    border-top: 1px solid #333;
    transition: transform 0.3s ease;
}

.cookie-consent.hidden {
    transform: translateY(100%);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cookie-content h3 {
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 10px;
}

.cookie-content p {
    font-size: 14px;
    line-height: 1.5;
    color: #cccccc;
}

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

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

/* Buttons */
.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    font-family: inherit;
}

.btn-primary {
    background: #8b5cf6;
    color: white;
}

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

.btn-secondary {
    background: transparent;
    color: white;
    border: 1px solid #444;
}

.btn-secondary:hover {
    background: #333;
    border-color: #666;
}

.btn-accept {
    background: #8b5cf6;
    color: white;
}

.btn-accept:hover {
    background: #7c3aed;
}

.btn-refuse {
    background: transparent;
    color: white;
    border: 1px solid #666;
}

.btn-refuse:hover {
    background: #333;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #333;
    z-index: 1000;
    padding: 15px 0;
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #fff;
}

.logo {
    width: 24px;
    height: 24px;

}

.brand-text {
    font-size: 18px;
    font-weight: 500;

}

.navigation {
    display: flex;
}

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

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #8b5cf6;
}

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

.burger-line {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

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

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

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: radial-gradient(ellipse at center, rgba(139, 92, 246, 0.3) 0%, #0A0A0A 70%);
    padding-top: 80px;
}

.hero-content {
    display: flex;
    align-items: center;
    min-height: 60vh;
}

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

.hero-subtitle {
    font-size: 12px;
    font-weight: 600;
    color: #8b5cf6;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 64px;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 30px;
}

.hero-description {
    font-size: 14px;
    line-height: 1.6;
    color: #cccccc;
    margin-bottom: 40px;
    display: flex;
    gap: 40px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

/* Features Section */
.features {
    padding: 100px 0;
 
}

.section-title {
    font-size: 36px;
    font-weight: 300;
    margin-bottom: 60px;
    text-align: left;
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.02);
    padding: 40px 30px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

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

.feature-number {
    font-size: 14px;
    font-weight: 600;
    color: #8b5cf6;
    margin-bottom: 20px;
}

.feature-title {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 20px;
}

.feature-description {
    font-size: 14px;
    line-height: 1.6;
    color: #cccccc;
}

/* Developers Section */
.developers {
    padding: 100px 0;
   
}

.developers .section-title {

    margin-bottom: 30px;
}

.dev-inner {
    display: flex;
    align-items: center;
    gap: 30px;
}

.section-description {
   
    font-size: 16px;
    color: #cccccc;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.benefits-list {
    list-style: none;
    max-width: 800px;
    margin: 0 auto 50px;
}

.benefits-list li {
    position: relative;
    padding: 15px 0 15px 30px;
    font-size: 14px;
    line-height: 1.6;
    color: #cccccc;
}

.benefits-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #8b5cf6;
    font-weight: bold;
    font-size: 16px;
}

.developers .btn {
    display: block;
    margin: 0 auto;
    width: fit-content;
}

.dev-image {
    max-width: 493px;
    width: 100%;
}

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

/* FAQ Section */
.faq {
    padding: 100px 0;
  
}

.faq-subtitle {
    font-size: 12px;
    font-weight: 600;
    color: #8b5cf6;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.faq .section-title {
    margin-bottom: 50px;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #333;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    margin-bottom: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    background: none;
    border: none;
    color: white;
    font-size: 16px;
    font-weight: 400;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: inherit;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #8b5cf6;
}

.faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: 1px solid #444;
    border-radius: 50%;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.02);
}

.faq-icon svg {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    border-color: #8b5cf6;
    background: rgba(139, 92, 246, 0.1);
}

.faq-item.active .faq-icon svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 30px 25px 30px;
    color: #cccccc;
    font-size: 14px;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: #111;
    padding: 50px 0 30px;
    border-top: 1px solid #333;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-info p {
    font-size: 14px;
    color: #cccccc;
    margin-bottom: 5px;
}

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

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #8b5cf6;
}

.footer-social p {
    font-size: 14px;
    color: #cccccc;
    margin-bottom: 15px;
}

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

.social-link {
    color: #cccccc;
    text-decoration: none;
    font-size: 14px;
  
    transition: all 0.3s ease;
}

.social-link:hover {
    color: #8b5cf6;
    border-color: #8b5cf6;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 12px;
    color: #666;
}

.page-section {
    padding: 160px 0 100px;
}

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

.games {
    padding: 60px 0;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(4, 1fr);
    gap: 16px;
}

.games-item img {
 width: 100%;
 display: block;
 border-radius: 24px;
}

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

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

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

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

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

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

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

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

    /* Cookie Consent */
    .cookie-buttons {
        flex-direction: column;
    }

    .cookie-buttons .btn {
        width: 100%;
    }

    /* Header */
    .burger-btn {
        display: flex;
    }

    .navigation {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(26, 26, 26, 0.95);
        backdrop-filter: blur(10px);
        border-top: 1px solid #333;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

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

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

    .nav-list li {
        border-bottom: 1px solid #333;
    }

    .nav-list li:last-child {
        border-bottom: none;
    }

    .nav-link {
        display: block;
        padding: 15px 0;
        font-size: 16px;
    }

    /* Hero */
    .hero {
        min-height: 80vh;
        padding-top: 100px;
    }

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

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

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

    .hero-buttons .btn {
        width: 100%;
    }

    /* Features */
    .features {
        padding: 60px 0;
    }

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

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

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

    /* Developers */
    .developers {
        padding: 60px 0;
    }

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

    .dev-inner {
        flex-direction: column;
        align-items: center;
    }

    /* FAQ */
    .faq {
        padding: 60px 0;
    }

    .faq-question {
        font-size: 14px;
        padding: 20px 20px;
    }

    .faq-icon {
        width: 28px;
        height: 28px;
    }

    .faq-answer p {
        padding: 0 20px 20px 20px;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-links {
        align-items: center;
    }

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

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

    .hero-description {
        flex-direction: column;
    }

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

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

    .games-item {
        flex: 0 1 47%;
        width: 100%;
    }

    .games-item:last-of-type {
        flex: 0 1 100%;
    }

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

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

    .cookie-content h3 {
        font-size: 20px;
    }

    .cookie-content p {
        font-size: 13px;
    }
}

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

              
                

                