* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --purple-600: #7C3AED;
    --purple-700: #6D28D9;
    --lime-400: #BEF264;
    --lime-500: #A3E635;
    --gray-50: #F9FAFB;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --white: #FFFFFF;
    --black: #000000;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--gray-700);
    background-color: var(--white);
}

h1, h2, h3 {
    font-family: 'Anton', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

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

.cookie-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.cookie-content {
    position: relative;
    background-color: var(--white);
    border-radius: 2rem;
    border: 4px solid var(--purple-600);
    max-width: 550px;
    width: 100%;
    padding: 2rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.cookie-icon {
    font-size: 4rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.cookie-content h2 {
    font-size: 1.875rem;
    margin-bottom: 1rem;
    color: var(--black);
}

.cookie-content p {
    margin-bottom: 1.5rem;
    color: var(--gray-700);
    line-height: 1.7;
}

.btn-primary,
.btn-secondary,
.btn-cta {
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--lime-400);
    color: var(--black);
    margin-bottom: 0.75rem;
}

.btn-primary:hover {
    background-color: var(--lime-500);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--black);
    border: 2px solid var(--black);
}

.btn-secondary:hover {
    background-color: var(--gray-50);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--white);
 
    z-index: 1000;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--black);
}

.logo img {
    width: 32px;
    height: 32px;
}

.logo span {
    font-size: 1.5rem;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--gray-700);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--purple-600);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--black);
    position: relative;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: var(--black);
    left: 0;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}

/* Hero Section */
.hero-section {
    padding: 8rem 1rem 3rem;
}

.hero-content {
    background: linear-gradient(135deg, var(--purple-600) 0%, var(--purple-700) 100%);
    border-radius: 2rem;
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
    min-height: 500px;
}

.hero-text {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.hero-text h1 {
    font-size: 3rem;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-text p {
    color: var(--white);
    font-size: 14px;
    margin-bottom: 2rem;
    line-height: 1.7;
    max-width: 377px;
}

.btn-cta {
    background-color: var(--lime-400);
    color: var(--black);
    width: auto;
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-cta:hover {
    background-color: var(--lime-500);
}

.hero-image-absolute {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60%;
    max-width: 700px;
    z-index: 1;
}

.hero-image-absolute img {
    width: 100%;
    height: auto;
    display: block;
}

/* Mobile */
@media (max-width: 768px) {
    .hero-content {
        min-height: 600px;
        padding: 3rem 1.5rem;
    }

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

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-image-absolute {
        width: 80%;
        max-width: 400px;
        bottom: 0;
        right: 0;
    }
}

/* Tablet */
@media (min-width: 769px) and (max-width: 1023px) {
    .hero-content {
        min-height: 550px;
        padding: 4rem 3rem;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-image-absolute {
        width: 55%;
        max-width: 500px;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .hero-content {
        min-height: 600px;
        padding: 4rem 4rem 4rem 5rem;
    }

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

    .hero-text h1 {
        font-size: 4rem;
    }

    .hero-image-absolute {
        width: 55%;
        max-width: 750px;
    }
}

/* About Section */
.about-section {
    padding: 4rem 1rem;
}

.section-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.star-icon {
    font-size: 2.5rem;
    line-height: 1;
}

.section-header h2 {
    font-size: 2.5rem;
    line-height: 1.2;
}

.about-content {
    display: grid;
    gap: 3rem;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 1rem;
}

.about-text p {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* Features Section */
.features-section {
    padding: 4rem 1rem;
    background-color: var(--gray-50);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-700);
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.feature-card {
    background-color: var(--purple-600);
    border-radius: 2rem;
    padding: 2rem;
    color: var(--white);
}

.feature-card img {
    width: 64px;
    height: 64px;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.9);
}

/* Seamless Section */
.seamless-section {
    padding: 4rem 0 0 0;
}

.seamless-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 0 1rem;
}

.seamless-header .star-icon {
    display: block;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.seamless-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--black);
}

.seamless-header p {
    font-size: 1.125rem;
    line-height: 1.7;
    max-width: 1200px;
    margin: 0 auto;
    color: var(--gray-700);
}

.seamless-image-full {
    width: 100%;
    margin: 0;
    padding: 0;
}

.seamless-image-full img {
    width: 100%;
    display: block;
    height: auto;
}

@media (min-width: 1024px) {
    .seamless-header h2 {
        font-size: 3.5rem;
    }
}

/* Testimonials Section */
/* Testimonials Section */
.testimonials-section {
    padding: 4rem 1rem;
    background-color: var(--gray-50);
}

.testimonials-content {
    display: grid;
   
}
.testimonials-left{
    max-width: 514px;
}
.testimonials-left p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.testimonial-character {
    display: flex;
    justify-content: center;
}

.testimonial-character img {
    width: 100%;
    max-width: 300px;
}

.testimonials-right {
    display: grid;
    gap: 1.5rem;
}

.testimonials-top {
    display: grid;
    gap: 1.5rem;
}

.testimonial-card {
    background-color: var(--purple-600);
    border-radius: 2rem;
    padding: 2rem;
    color: var(--white);
}

.testimonial-wide {
    width: 100%;
}

.stars {
    color: #FBBF24;
    font-size: 1.25rem;
    margin-bottom: 10px;
   
}

.testimonial-card h3 {
    font-size: 1.25rem;
 margin-bottom: 15px;
}

.testimonial-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    font-size: 14px;
}

@media (min-width: 769px) {
    .testimonials-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .testimonials-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .testimonials-top {
        grid-template-columns: 1fr 1fr;
    }
}

/* Contact Section */
/* Contact Section */
.contact-section {
    padding: 4rem 1rem;
}

.contact-content {
    background: linear-gradient(135deg, var(--purple-600) 0%, var(--purple-700) 100%);
    border-radius: 2rem;
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    flex-direction: column;
}

.contact-text {
    padding: 4rem 2rem 2rem;
    text-align: center;
    color: var(--white);
    position: relative;
    z-index: 2;
}

.contact-text .star-icon {
    display: block;
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.contact-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.contact-text p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.contact-info {
    margin-bottom: 2rem;
}

.contact-info p {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.contact-image {
    width: 100%;
    margin-top: auto;
    position: relative;
    z-index: 1;
}

.contact-image img {
    width: 100%;
    display: block;
    border-radius: 0 0 2rem 2rem;
}

@media (min-width: 1024px) {
    .contact-content {
        min-height: 700px;
    }

    .contact-text {
        padding: 4rem 4rem 2rem;
    }

    .contact-text h2 {
        font-size: 3.5rem;
    }
}

/* Footer */
.footer {
    background-color: var(--white);

    padding: 2rem 1rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--black);
}

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

.footer-logo span {
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.footer-links a {
    text-decoration: none;
    color: var(--gray-700);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--purple-600);
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background-color: var(--purple-600);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    font-size: 1.25rem;
    transition: background-color 0.3s ease;
}

.footer-social a:hover {
    background-color: var(--purple-700);
}

.footer-copyright {
    text-align: left;
    color: var(--gray-600);
    font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container{
        display: flex;
        flex-direction: column;
       align-items: flex-start;
    }
    .nav-menu {
        display: flex;
        margin-top: 14px;
        /* position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
    }

    .nav-menu.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: none;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .seamless-header h2,
    .contact-content h2 {
        font-size: 2rem;
    }

    .footer-content {
        text-align: center;
    }
}

@media (min-width: 769px) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
        padding: 4rem;
    }

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

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

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

    .footer-content {
    
        justify-content: left;
    }
}

@media (min-width: 1024px) {
    .hero-text h1 {
        font-size: 4rem;
    }

    .section-header h2 {
        font-size: 3.5rem;
    }

    .seamless-header h2,
    .contact-content h2 {
        font-size: 3.5rem;
    }

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


/* Games Catalog Section */
.games-catalog-section {
    padding: 4rem 1rem;
    background-color: var(--white);
}

.catalog-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--gray-700);
    margin-bottom: 1.5rem;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.games-column {
    display: grid;
    gap: 1.5rem;
}

.game-card {
    position: relative;
    border-radius: 2rem;
    overflow: hidden;
    display: block;
    text-decoration: none;
    transition: transform 0.3s ease;
    cursor: pointer;
}

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

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

.game-large {
    min-height: 400px;
}

.game-medium {
    min-height: 400px;
}

.game-small {
    min-height: 190px;
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--purple-600);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-card:hover .game-overlay {
    opacity: 0.95;
}

.game-title {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    padding: 1rem;
}

/* Desktop Layout */
@media (min-width: 1024px) {
    .games-grid {
        grid-template-columns: 2fr 1fr 2fr 1fr;
        gap: 1.5rem;
    }

    .game-large {
        min-height: 500px;
    }

    .game-medium {
        min-height: 500px;
    }

    .game-small {
        min-height: 235px;
    }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 1023px) {
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .game-large,
    .game-medium {
        min-height: 350px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .games-grid {
        grid-template-columns: 1fr;
    }

    .game-large,
    .game-medium {
        min-height: 300px;
    }

    .game-small {
        min-height: 180px;
    }
}






/* Game Details Section */
.game-details-section {
    padding: 4rem 1rem;
    background-color: var(--white);
}

.game-detail-block {
    display: grid;
    gap: 3rem;
    align-items: center;
    margin-bottom: 6rem;
}

.game-detail-block:last-child {
    margin-bottom: 0;
}

.game-detail-text .star-icon {
    display: block;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.game-detail-text h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--black);
}

.game-detail-text p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--gray-700);
}

.game-detail-image {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.game-detail-image img {
    width: 100%;
    border-radius: 2rem;
 
}

.btn-play {
    background-color: var(--lime-400);
    color: var(--black);
    padding: 1rem 3rem;
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: 50px;
    border: none;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-play:hover {
    background-color: var(--lime-500);
    transform: translateY(-2px);
}

/* Desktop Layout */
@media (min-width: 1024px) {
    .game-detail-block {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }

    .game-detail-reverse {
        grid-template-columns: 1fr 1fr;
    }

    .game-detail-reverse .game-detail-image {
        order: -1;
    }

    .game-detail-text h2 {
        font-size: 3.5rem;
    }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 1023px) {
    .game-detail-block {
        grid-template-columns: 1fr;
    }

    .game-detail-text h2 {
        font-size: 2.5rem;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .game-detail-text h2 {
        font-size: 2rem;
    }

    .game-detail-block {
        margin-bottom: 4rem;
    }
}