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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lexend', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-family: 'Lexend', sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    border-radius: 60px;
border: 5px solid #FFF;
color: #fff;
background: linear-gradient(180deg, #FFA53E 0%, #DE471D 100%);
box-shadow: 0 7px 20px 0 rgba(0, 0, 0, 0.35);
}

.btn-primary {
    border-radius: 60px;
border: 5px solid #FFF;
background: linear-gradient(180deg, #FFA53E 0%, #DE471D 100%);
box-shadow: 0 7px 20px 0 rgba(0, 0, 0, 0.35);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #FF8C42, #FF6B35);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #FF6B35;
    border: 2px solid #FF6B35;
}

.btn-secondary:hover {
    background: #FF6B35;
    color: white;
}

.btn-large {
    padding: 15px 40px;
    font-size: 16px;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.3s ease;
}

.cookie-consent.hidden {
    opacity: 0;
    visibility: hidden;
}

.cookie-content {
    background: white;
    padding: 40px;
    border-radius: 20px;
    max-width: 600px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.cookie-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.cookie-content h3 {
    color: #4F46E5;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.cookie-content p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(79, 70, 229, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar {
    padding: 15px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white;
    font-weight: 700;
    font-size: 20px;
    gap: 6px;
}

.logo img {
    width: 30px;
}

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

.nav-menu {
    display: flex;
}

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

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #FF6B35;
}

.burger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #4F46E5, #7C3AED);
    padding: 120px 0 80px;
    color: white;
    overflow: hidden;
    position: relative;
}



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

.hero-title {
    font-size: 54px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-description {
    font-size: 14px;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.6;
}

.game-avatars {
    max-width: 500px;
    width: 100%;
    margin-top: 40px;
}

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

.avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FF6B35, #FF8C42);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.avatar img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.hero-image {
    text-align: center;
    position: relative;
    max-width: 509px;
    width: 100%;
}

.hero-image img {
    max-width: 100%;
    width: 100%;
}

/* Story Section */
.story {
    padding: 100px 0;
    background: #F8FAFC;
}

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

.story-image {
    max-width: 533px;
    width: 100%;
}

.story-image img {
    width: 100%;
    height: auto;
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    color: #4F46E5;
    margin-bottom: 30px;
    text-transform: uppercase;
}

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

.story-text p {
    color: #666;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.7;
}

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

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

.feature-card {
    background: #F8FAFC;
    padding: 40px 30px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(79, 70, 229, 0.1);
}

.feature-card img {
   width: 60px;
   margin-left: auto;
   margin-top: auto;
   display: block;
}

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

.feature-card h3 {
    color: #4F46E5;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 18px;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Experience Section */
.experience {
    padding: 100px 0;
    overflow: hidden;
}

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

.experience-image {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.experience-image img {
    width: 260px;
    height: auto;
    margin-bottom: -50px;
    margin-right: -40px;
    position: relative;
}

.experience-features {
  padding: 20px;
    border-radius: 30px;
background: #0C4AEE;
}

.exp-feature {
    margin-bottom: 25px;
    color: #fff;
}

.exp-feature h4 {
    color: #FF6B35;
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 16px;
}

.exp-feature p {
    opacity: 0.9;
    font-size: 14px;
    line-height: 1.2;
}

.experience-text > p {
    margin: 30px 0;
    opacity: 0.9;
    line-height: 1.7;
}

/* Reviews Section */
.reviews {
    padding: 100px 0;
    background: linear-gradient(135deg, #FF6B35, #FF8C42);
    color: white;
    overflow: hidden;
    position: relative;
}

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

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

.review-card {
    background: rgba(255, 255, 255, 0.15);
    padding: 30px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.review-header h4 {
    font-weight: 700;
    font-size: 14px;
}

.stars {
    font-size: 14px;
}

.review-card p {
    line-height: 1.6;
    opacity: 0.95;
}

.reviews-character {
    max-width: 590px;
    width: 100%;
    margin-left: -60px;
    margin-right: -60px;
}

.reviews-character img {
    width: 100%;
    height: auto;
    display: block;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #4F46E5, #7C3AED);
    color: white;
}

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

.contact-image {
    max-width: 334px;
    width: 100%;
}

.contact-image img {
    width: 100%;
    height: auto;
}

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

.contact-info p {
    margin-bottom: 10px;
    opacity: 0.9;
}

.contact-text > p {
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.7;
}

/* Footer */
.footer {
    background: #1E293B;
    color: white;
    padding: 30px 0 30px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 30px;
    border-radius: 30px;
border: 1px solid rgba(255, 255, 255, 0.40);
background: rgba(255, 255, 255, 0.10);
padding: 20px;
}

.footer-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #94A3B8;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

.social-link {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #FF6B35, #FF8C42);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

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

.social-link:hover {
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #334155;
    color: #94A3B8;
}

.catalog {
    background: linear-gradient(180deg, #4973FF 0%, #0C4AEE 100%);
    padding: 140px 0 80px;
    color: #fff;
}

.games-grid {
    padding-top: 50px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
}

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

.game-item img {
    border-radius: 24px;
    width: 100%;
}

.cat-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cat-image {
    max-width: 350px;
    width: 100%;
    border-radius: 24px;
}

.page-image {
    max-width: 500px;
    width: 100%;
    border-radius: 24px;
}

.cat-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: #fff;
    align-items: flex-start;
}

/* Responsive Design */
@media (max-width: 1023px) {
    .burger-menu {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(79, 70, 229, 0.98);
        backdrop-filter: blur(20px);
        transition: right 0.3s ease;
        padding: 50px 15px;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
    
    .nav-link {
        font-size: 20px;
    }
    
    .burger-menu.active .burger-line:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .burger-menu.active .burger-line:nth-child(2) {
        opacity: 0;
    }
    
    .burger-menu.active .burger-line:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    .hero-content, .hero-text {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 30px;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .story-content,
    .experience-content,
    .contact-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .contact-content {
        text-align: left;
    }
    
    .reviews-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .cookie-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .section-title {
        font-size: 28px;
    }

    .experience-content {
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .game-item {
        flex: 0 1 45%;
    }

    .cat-inner {
        flex-direction: column;
    }

    .reviews {
        padding-bottom: 0;
    }
    
    .reviews-grid {
        gap: 20px;
    }
    
    .cookie-content {
        padding: 30px;
        margin: 20px;
    }
    
    .cookie-content h3 {
        font-size: 20px;
    }
    
    .btn {
        padding: 10px 25px;
        font-size: 13px;
    }
    
    .btn-large {
        padding: 12px 30px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 24px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .hero-description,
    .story-text p,
    .experience-text > p,
    .contact-text > p {
        font-size: 14px;
    }
    
    .feature-card,
    .review-card,
    .exp-feature {
        padding: 25px 20px;
    }
    
    .story,
    .features,
    .experience,
    .contact {
        padding: 60px 0;
    }
    
    .footer-links {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}
              .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;
              }

              
                

                