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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #fff;
    background-color: #E74C3C;
    overflow-x: hidden;
}

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

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

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

.cookie-content {
    background: #fff;
    color: #333;
    padding: 40px;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

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

.cookie-icon img {
    width: 60px;
    height: 60px;
}

.cookie-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

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

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

.btn-accept {
    background: #E74C3C;
    color: #fff;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn-manage {
    background: transparent;
    color: #E74C3C;
    border: 2px solid #E74C3C;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-manage:hover {
    background: #E74C3C;
    color: #fff;
}

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

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 20px;
    color: #fff;
    text-decoration: none;
}

.nav-logo img {
    width: 40px;
    height: 40px;
}

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

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

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

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

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

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

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

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

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

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    flex-direction: column;
    padding-top: 100px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    flex: 1;
   width: 100%;
   display: flex;
   flex-direction: column;
   margin-bottom: 30px;
}

.hero-title {
    font-size: 94px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.highlight {
  margin-left: auto;
  display: block;
  text-align: right;
}

.hero-description {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
   max-width: 508px;
   width: 50%;
   margin-top: -8%;
}

.btn-primary {
    background: #fff;
    color: #E74C3C;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    width: fit-content;
}

.btn-primary:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero-games {
    flex: 1;
    position: relative;
    width: 100%;
}

.hero-games img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* About Section */
.about {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.1);
}

.about-content {
    
    border-radius: 100px;
border: 3px solid #FFF;
padding: 40px 20px 0;
}


.about-inner {
display: flex;
   justify-content: space-between;
    gap: 30px;
    align-items: flex-end;
  
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 30px;
    text-align: center;
    flex: 0 1 100%;
}

.about-text {
    max-width: 348px;
    width: 100%;
}

.about-text:nth-of-type(1) {
    align-self: flex-start;
}

.about-text p,
.about-description p {
    margin-bottom: 40px;
    line-height: 1.4;
    font-size: 14px;
}

.about-character {
    text-align: center;
    max-width: 428px;
    width: 100%;
}

.about-character img {
    max-width: 100%;
   width: 100%;
   display: block;
}

/* Advantages Section */
.advantages {
    padding: 100px 0;
}

.advantages-grid {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.advantage-card {
 width: 100%;
 flex: 0 1 31%;
    padding: 20px;
    border-radius: 40px;
background: #FFF;
   color: #000;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.advantage-card:nth-of-type(4) {
    margin-left: auto;
}

.advantage-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.3);
}

.card-icon {
    margin-bottom: 20px;
}

.card-icon img {
    width: 60px;
    height: 60px;
}

.advantage-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.advantage-card p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.9;
}

/* Categories Section */
.categories {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.1);
}

.categories-list {
    padding: 50px 30px;
    border-radius: 100px;
border-bottom: 3px solid #FFF;
}

.category-item {
    padding: 30px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.category-item:last-child {
    border-bottom: none;
}

.category-item h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.category-item p {
    font-size: 16px;
    opacity: 0.9;
    line-height: 1.6;
}

.categories-games {
    margin-top: 50px;
    width: 100%;
}

.game-showcase {
    position: relative;
    height: 400px;
}

.showcase-game {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.3);
    animation: float 6s ease-in-out infinite;
}

.showcase-game img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-s1 {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.game-s2 {
    top: 10%;
    left: 45%;
    animation-delay: 1s;
}

.game-s3 {
    top: 25%;
    right: 15%;
    animation-delay: 2s;
}

.game-s4 {
    bottom: 25%;
    left: 25%;
    animation-delay: 3s;
}

.game-s5 {
    bottom: 15%;
    right: 25%;
    animation-delay: 4s;
}

.star-3 {
    top: 50%;
    left: 35%;
    animation-delay: 1.5s;
}

.star-4 {
    bottom: 45%;
    right: 35%;
    animation-delay: 3.5s;
}

.circle-3 {
    width: 70px;
    height: 70px;
    top: 30%;
    right: 45%;
}

.circle-4 {
    width: 50px;
    height: 50px;
    bottom: 30%;
    left: 45%;
}

/* Getting Started Section */
.getting-started {
    padding: 100px 0;
    text-align: center;
}

.getting-started-text {
    font-size: 16px;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.2);
    padding: 50px 0 20px;
}

.footer-content {
    display: flex;
   justify-content: space-between;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 18px;
}

.footer-logo img {
    width: 35px;
    height: 35px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.footer-section h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-section ul {
    list-style: none;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    padding: 30px 0;
}

.footer-section ul li {
    margin-bottom: 8px;
}

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

.footer-section a:hover {
    color: #fff;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.8;
}

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

.social-link img {
    width: 30px;
    height: 30px;
    transition: transform 0.3s ease;
}

.social-link:hover img {
    transform: scale(1.1);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.7;
}

.footer-image {
    width: 100%;
}

.games-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 880px;
    width: 75%;
}

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

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

.games-image {
    position: absolute;
    right: 0;
    width: 25%;
    bottom: 100px;
}

.page-text {
    max-width: 800px;
    width: 100%;
}

.page-image {
    max-width: 700px;
    width: 100%;
    display: block;
    margin: 40px auto;
}

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

@keyframes twinkle {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 1440px) {
  .hero-title {
    font-size: 6.5vw;
  }
}

/* Responsive Design */
@media (max-width: 1023px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(231, 76, 60, 0.98);
        transition: left 0.3s ease;
        padding: 50px 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
    
    .nav-burger {
        display: flex;
    }
    
    .hero-title {
        font-size: 64px;
    }

    .hero-description {
     margin-top: 0;
     width: 100%;
    }

    .highlight {
        text-align: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
      
        gap: 30px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        flex-direction: column;
      min-height: auto;
        padding-top: 120px;
    }
    
    .hero-content {
        max-width: 100%;
        margin-bottom: 40px;
    }
    
    .hero-title {
       
    }
    
    .hero-games {
        max-height: 300px;
    }

    .hero-games img {
       
    }

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

    .about-text {
        max-width: 100%;
    }

    .about-text:nth-of-type(1) {
        align-self: center;
    }

    .games-grid {
        justify-content: center;
        width: 100%;
    }

    .games-image {
        position: relative;
        bottom: auto;
        right: -20px;
        display: block;
        margin-left: auto;
        width: 55%;
    }

    .game-item {
      flex: 0 1 46%;
    }
    
    .game-circle,
    .showcase-game {
        width: 80px;
        height: 80px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .advantages-grid {
        justify-content: center;
        gap: 20px;
    }

    .advantage-card {
        flex: 0 1 46%;
    }

    .advantage-card:nth-of-type(4) {
        margin-left: 0;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
    }
    
    .categories-games {
        height: 250px;
    }
    
    .cookie-content {
        padding: 30px 20px;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
}

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

    .advantages-grid {
        flex-direction: column;
    }
    
    .advantage-card {
        padding: 20px;
    }
    
    .getting-started-text {
        font-size: 14px;
    }
}

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

              
                

                