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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(180deg, #2F2C3D 0%, #15151F 100%);
    color: #ffffff;
    overflow-x: hidden;
    line-height: 1.6;
}

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

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(10px);
}

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

.cookie-content {
    background: #2a2a2a;
    padding: 40px;
    border-radius: 20px;
    max-width: 600px;
    text-align: center;
    margin: 20px;
}

.cookie-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.cookie-content p {
    font-size: 1rem;
    color: #cccccc;
    margin-bottom: 30px;
    line-height: 1.6;
}

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

.btn-accept {
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(139, 92, 246, 0.3);
}

.btn-refuse {
    background: transparent;
    color: white;
    border: 2px solid #666;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-refuse:hover {
    border-color: #999;
    background: rgba(255, 255, 255, 0.1);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    
}

.nav {
    padding: 15px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: transparent;
}

.nav-logo img {
    width: 60px;
}

.nav-logo .logo-text {
   
    font-weight: 800;
   -webkit-text-stroke-width: 1px;
-webkit-text-stroke-color: #FFF;
font-family: Montserrat;
font-size: 24px;
font-style: normal;
font-weight: 900;
line-height: normal;
letter-spacing: 2.4px;
text-transform: uppercase;
    letter-spacing: 3px;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 8px;
    border-radius: 40px;
background: rgba(255, 255, 255, 0.10);
padding: 8px;
}

.nav-link {
    color: #1D1D1D;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    border-radius: 20px;
border: 1px solid #F6F6F6;
background: #FFF;
padding: 16px 22px;
display: flex;
line-height: 1;
}



.nav-link:hover {
    border-radius: 20px;
background: linear-gradient(180deg, #E03BDA 0%, #9B0CE0 100%);
color: #fff;
}

.nav-link.active {
    border-radius: 20px;
background: linear-gradient(180deg, #E03BDA 0%, #9B0CE0 100%);
color: #fff;
}

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

.nav-burger span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    transition: all 0.3s ease;
}

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

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

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

/* Hero Section */
.hero {
    min-height: 100vh;
    background: radial-gradient(ellipse at center, rgba(139, 92, 246, 0.15) 0%, rgba(26, 26, 26, 0.8) 70%);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

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

.hero-content {
    position: relative;
    width: 100%;
}

.hero-text {
    width: 100%;
}

.hero-title {
    font-size: 16rem;
    font-weight: 700;
    line-height: 0.8;
    margin-bottom: 30px;
    letter-spacing: -2px;
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.3);
    -webkit-text-fill-color: transparent;
    display: block;
    word-break: break-all;
}

.title-outline {
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.3);
    -webkit-text-fill-color: transparent;
    display: block;
}

.title-filled {
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.hero-info {
    display: flex;
    width: 100%;
    justify-content: space-between;
    gap: 20px;
    position: relative;
    z-index: 4;
}

.games-btn {
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    align-self: flex-start;
    transition: all 0.3s ease;
    text-decoration: none;
}

.games-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(139, 92, 246, 0.3);
}

.hero-description {
    font-size: 1.1rem;
    color: #cccccc;
    max-width: 400px;
    line-height: 1.6;
}

.hero-image {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 627px;
    bottom: 0;
    left: 45%;
    transform: translateX(-50%);
}

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

.character-container {
    width: 400px;
    height: 500px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.3), rgba(236, 72, 153, 0.3));
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.character-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    border-radius: 50%;
    opacity: 0.5;
    animation: pulse 3s infinite;
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.1); }
}

.hero-icons {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-icons .icon-item {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    margin: 0 10px;
    border-radius: 8px;
    flex-shrink: 0;
    animation: scroll-left 20s linear infinite;
}

@keyframes scroll-left {
    0% { transform: translateX(100vw); }
    100% { transform: translateX(-100px); }
}

/* About Section */
.about {
    padding: 100px 0 200px;
  
    position: relative;
    overflow: hidden;
}

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

.about-visual {
    position: relative;
    max-width: 504px;
    width: 100%;
}

.about-visual img {
    width: 100%;
}

.game-icons {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(236, 72, 153, 0.2));
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.game-icons::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 20%;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    border-radius: 12px;
    opacity: 0.8;
}

.game-icons::after {
    content: '';
    position: absolute;
    bottom: 20%;
    right: 20%;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ec4899, #8b5cf6);
    border-radius: 50%;
    opacity: 0.6;
}

.section-title {
    font-size: 6rem;
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 30px;
}

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

.marq {
    min-width: 100%;
    width: 120%;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

/* Games Section */
.games {
    padding: 100px 0;
   
}

.our-inner {
    display: flex;
    gap: 30px;
    justify-content: space-between;
}

.games-title {

    margin-bottom: 60px;
}

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

.game-category {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.game-category:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.2);
}

.game-image {
    width: 100%;
    border-radius: 15px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

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

.game-image.casual {
    background: linear-gradient(135deg, #8b5cf6, #3b82f6);
}

.game-image.adventure {
    background: linear-gradient(135deg, #ec4899, #8b5cf6);
}

.game-image.action {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
}

.game-content {
    padding: 0 20px 20px; 
}

.game-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
}

.game-description {
    color: #cccccc;
    line-height: 1.6;
}

/* Why Choose Section */
.why-choose {
    padding: 100px 0 200px;
    overflow: hidden;
    position: relative;
}

.why-title {
  
    margin-bottom: 80px;
}

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

.feature-item {
    text-align: center;
}

.feature-image {
    width: 100%;
    border-radius: 15px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

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

.feature-image.innovative {
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
}

.feature-image.beautiful {
    background: linear-gradient(135deg, #ec4899, #f97316);
}

.feature-image.cross-platform {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
}

.feature-image.community {
    background: linear-gradient(135deg, #10b981, #3b82f6);
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
}

.feature-description {
    color: #cccccc;
    line-height: 1.6;
}

/* Footer */
.footer {
   padding-top: 180px;
    position: relative;
    overflow: hidden;
}

.marq-f {
    min-width: 100%;
    width: 120%;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.footer-icons {
    height: 60px;
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.footer-icons .icon-item {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    margin: 0 10px;
    border-radius: 8px;
    flex-shrink: 0;
    animation: scroll-right 25s linear infinite;
}

@keyframes scroll-right {
    0% { transform: translateX(-100px); }
    100% { transform: translateX(100vw); }
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 40px;
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo .logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
}

.footer-copyright {
    color: #888;
    margin-top: 10px;
    font-size: 0.9rem;
}

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

.footer-link {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

.footer-contact p {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 4px;
}

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

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

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

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

.footer-bottom {
   width: 100%;
}

.footer-bottom img {
    width: 100%;
    display: block;
}

.brand-outline {
    font-size: 4rem;
    font-weight: 900;
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.1);
    -webkit-text-fill-color: transparent;
    letter-spacing: 4px;
}

.cat-grid {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    
}

.game-item {
    width: 100%;
    flex: 0 1 33%;
    margin: -30px;
    transition: all 0.3s ease-in-out;
}

.game-item:hover {
    transform: rotate(5deg) scale(1.05);
    
}

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

.page-image {
    max-width: 360px;
    bottom: 15%;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .nav-burger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 100%;
        background: rgba(26, 26, 26, 0.95);
        backdrop-filter: blur(10px);
        transition: right 0.3s ease;
        padding: 20px;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 20px;
    }

    .hero {
        min-height: auto;
        padding: 140px 0 100px;
    }
    
    .hero-info {
       flex-direction: column;
    }
    
    .hero-title {
        font-size: 12rem;
        width: 74%;
    }

    .hero-image {
        bottom: 25%;
        left: auto;
        transform: none;
        right: -15%;
        width: 78vw;
    }
    
    .character-container {
        width: 300px;
        height: 350px;
    }
    
    .about-content {
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
        gap: 30px;
    }
    
    .section-title {
       
    }

    .our-inner {
        flex-direction: column;
    }
    
    .games-grid {
        
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
       
        gap: 30px;
    }
    
    .footer-links {
       
    }
    
    .social-links {
       
    }
    
    .brand-outline {
        font-size: 2.5rem;
    }
    
    .cookie-content {
        padding: 30px 20px;
        margin: 10px;
    }
    
    .cookie-content h2 {
        font-size: 2rem;
    }
    
    .cookie-buttons {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 550px) {
    .hero-title {
        font-size: 6rem;
        width: 100%;
    }
    
.footer {
    padding-top: 120px;
}

    .section-title {
        font-size: 4rem;
        word-break: break-all;
    }

    .game-item {
        flex: 0 1 51%;
        margin: -20px;
    }

    .marq, .marq-f {
        width: 180%;
    }
    
    .games-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .game-category,
    .feature-item {
        padding: 20px;
    }
}

/* Tablet Styles */
@media (max-width: 1024px) and (min-width: 769px) {
    .nav-burger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 50%;
        background: rgba(26, 26, 26, 0.95);
        backdrop-filter: blur(10px);
        transition: right 0.3s ease;
        padding: 20px;
        height: calc(100vh - 70px);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 20px;
    }
    
    .hero-title {
        font-size: 6rem;
    }
    
    .character-container {
        width: 350px;
        height: 400px;
    }
}

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

              
                

                