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

:root {
    --primary-pink: #FF6B9D;
    --primary-yellow: #FFD93D;
    --primary-purple: #A78BFA;
    --primary-orange: #FF9F40;
    --bg-light: #F9F9F9;
    --bg-white: #FFFFFF;
    --text-dark: #2D2D2D;
    --text-light: #666666;
    --gradient-pink: linear-gradient(135deg, #FFB6D9 0%, #FF85B8 100%);
    --gradient-yellow: linear-gradient(135deg, #FFE89C 0%, #FFD93D 100%);
    --gradient-purple: linear-gradient(135deg, #C4B5FD 0%, #A78BFA 100%);
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background: #F1F1F1;
    line-height: 1.6;
    overflow-x: hidden;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: white;
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-consent.show {
    transform: translateY(0);
}

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
}

.cookie-content a {
    color: var(--primary-yellow);
    text-decoration: underline;
}

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

.cookie-buttons button {
    padding: 10px 24px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-accept {
    background: var(--primary-yellow);
    color: var(--text-dark);
}

.btn-accept:hover {
    background: #FFE066;
}

.btn-decline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-decline:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Header */
.header {
   background-color: #F1F1F1;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
   
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 4px;
}

.logo img {
    width: 40px;
}

.logo a {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
}

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

.nav-list a {
    font-weight: 500;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.nav-list a:hover {
    color: var(--primary-pink);
}

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

.burger-menu span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

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

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

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

/* Hero Section */
.hero {
    padding: 60px 0 40px;
   
}

.hero-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.hero-top {
    text-align: center;
   width: 100%;
    margin: 0 auto;
    border-radius: 24px;
background: #FFF;
padding: 24px;
}

.hero-top h1 {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.3;
}

.highlight {
    color: var(--primary-yellow);
}

.highlight-pink {
    color: var(--primary-pink);
}

.hero-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.hero-image {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.stats-box {
    background: var(--primary-yellow);
    padding: 30px;
    border-radius: 25px;
    text-align: center;
}

.stats-number {
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.player-avatars {
    display: flex;
    justify-content: center;
    margin: 0 auto 20px;
    gap: 0;
    max-width: 310px;
    width: 100%;
    
}

.player-avatars img {
    width: 100%;

   
}

.player-avatars img:first-child {
    margin-left: 0;
}

.btn-primary {
    background: var(--text-dark);
    color: white;
    padding: 16px 32px;
    border: none;
    border-radius: 30px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

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

.works-section {
    background: var(--bg-light);
    padding: 40px 30px;
    border-radius: 25px;
    text-align: center;
}

.works-section h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 5px;
}

.works-section .subtitle {
    color: var(--text-light);
    font-size: 15px;
    margin-bottom: 30px;
}

.works-circles {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.circle {
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    color: white;
    white-space: nowrap;
}

.circle.pink {
    background: var(--primary-pink);
}

.circle.yellow {
    background: var(--primary-yellow);
    color: var(--text-dark);
}

.circle.purple {
    background: var(--primary-purple);
}

.circle.pink-light {
    background: #FFB6D9;
    color: var(--text-dark);
}

.circle.purple-light {
    background: #C4B5FD;
    color: var(--text-dark);
}

.circle.yellow-light {
    background: #FFE89C;
    color: var(--text-dark);
}

.circle.yellow-bright {
    background: #FFF176;
    color: var(--text-dark);
}

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

.subtitle {
    color: var(--text-light);
    font-size: 16px;
}

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

.section-header h2 {
    font-size: 42px;
    font-weight: 700;
}

.play-link {
    color: var(--text-light);
    font-weight: 500;
    transition: color 0.3s ease;
}

.play-link:hover {
    color: var(--primary-pink);
}

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

.feature-card {
    background: var(--bg-white);
    border-radius: 40px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

.feature-image {
    height: 280px;
    overflow: hidden;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-card h3 {
    font-size: 24px;
    font-weight: 700;
    padding: 20px 20px 10px;
}

.feature-card p {
    color: var(--text-light);
    padding: 0 20px 30px;
    line-height: 1.6;
}

/* Spark Section */
.spark {
    padding: 80px 0;
    background: var(--bg-white);
    text-align: center;
}

.spark h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.spark-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

.spark-image {
    max-width: 400px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.spark-text {
    position: absolute;
    font-size: 72px;
    font-weight: 700;
    opacity: 0.1;
}

.spark-text.left {
    left: 5%;
    top: 20%;
    color: var(--primary-pink);
}

.spark-text.left-yellow {
    left: 10%;
    bottom: 20%;
    color: var(--primary-yellow);
}

.spark-text.right {
    right: 5%;
    top: 25%;
    color: var(--primary-pink);
}

.spark-text.right-yellow {
    right: 10%;
    bottom: 25%;
    color: var(--primary-yellow);
}

/* Genres Section */
.genres {
    padding: 80px 0;
    background: var(--bg-light);
}

.genres h2 {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
}

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

.genre-card {
    padding: 40px 30px;
    border-radius: 20px;
    color: var(--text-dark);
}

.genre-card.pink-gradient {
    background: var(--gradient-pink);
}

.genre-card.yellow-gradient {
    background: var(--gradient-yellow);
}

.genre-card.purple-gradient {
    background: var(--gradient-purple);
}

.genre-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.genre-card p {
    margin-bottom: 25px;
    line-height: 1.6;
}

.btn-dark {
    background: var(--text-dark);
    color: white;
    padding: 12px 28px;
    border: none;
    border-radius: 25px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-dark:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
}

/* Play Your Way Section */
.play-way {
    padding: 80px 0;
  
}

.play-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    border-radius: 24px;
background: #FFF;
padding: 20px;
}

.play-text h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
}

.genre-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
}

.tag {
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
}

.tag.yellow {
    background: var(--primary-yellow);
    color: var(--text-dark);
}

.tag.pink {
    background: var(--primary-pink);
    color: white;
}

.tag.purple {
    background: var(--primary-purple);
    color: white;
}

.tag.yellow-light {
    background: #FFE89C;
    color: var(--text-dark);
}

.tag.pink-light {
    background: #FFB6D9;
    color: var(--text-dark);
}

.tag.yellow-bright {
    background: #FFF176;
    color: var(--text-dark);
}

.play-image {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Featured Games Section */
.featured-games {
    padding: 80px 0;
    background: var(--bg-light);
}

.featured-games h2 {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
}

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


.div2 {
    grid-column-start: 1;
    grid-row-start: 2;
}

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

.div4 {
    grid-column: span 3 / span 3;
    grid-row: span 3 / span 3;
    grid-column-start: 4;
    grid-row-start: 1;
}

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

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

.game-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
    width: 100%;
    flex: 0 1 45%;
}

.game-card:hover {
    transform: translateY(-10px);
}

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

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 50px 0 30px;
}

.footer-content {
    margin-bottom: 40px;
}

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

.footer-links a {
    color: white;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-yellow);
}

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

.footer-policies {
    display: flex;
    gap: 20px;
}

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

.footer-policies a:hover {
    color: white;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: #4267B2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.social-links a:first-child {
    background: #1DA1F2;
}

.social-links a:hover {
    transform: scale(1.1);
}

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

.footer-logo {
    text-align: center;
    margin-top: 40px;
}

.footer-logo h3 {
    font-size: 48px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-pink) 0%, var(--primary-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Responsive Design */
@media (max-width: 1023px) {
    .hero-top h1 {
        font-size: 38px;
    }

    .hero-bottom {
        grid-template-columns: 1fr;
    }

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

    .play-content {
        grid-template-columns: 1fr;
    }

    .spark-text {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: var(--bg-white);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
        padding: 20px;
    }

    .nav.active {
        left: 0;
    }

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

    .hero-top h1 {
        font-size: 32px;
    }

    .works-section h2 {
        font-size: 36px;
    }

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

    .section-header h2,
    .spark h2,
    .genres h2,
    .featured-games h2,
    .play-text h2 {
        font-size: 32px;
    }

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

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

    .spark-text {
        display: none;
    }

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}

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

    .hero,
    .why-choose,
    .spark,
    .genres,
    .play-way,
    .featured-games {
        padding: 50px 0;
    }

    .hero-top h1 {
        font-size: 26px;
    }

    .works-section {
        padding: 30px 20px;
    }

    .works-section h2 {
        font-size: 32px;
    }

    .works-circles {
        gap: 10px;
    }

    .circle {
        font-size: 13px;
        padding: 10px 20px;
    }

    .section-header h2,
    .spark h2,
    .genres h2,
    .featured-games h2,
    .play-text h2 {
        font-size: 28px;
    }

    .btn-primary,
    .btn-dark {
        width: 100%;
    }

    .footer-logo h3 {
        font-size: 36px;
    }
}

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

              
                

                