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


/* Cookie Notice */
.cookie-notice {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(240, 240, 240, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(5px);
}

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

.cookie-content {
    text-align: center;
    color: #333;
    max-width: 600px;
    padding: 40px;
}

.cookie-content h2 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 30px;
    color: #333;
}

.cookie-content p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 40px;
    color: #333;
}

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

.cookie-btn {
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background-color: #333;
    color: white;
}

.cookie-btn.learn-more {
    background-color: transparent;
    color: #333;
    border: 2px solid #333;
}

.cookie-btn:hover {
    transform: translateY(-2px);
}


body {
    font-family: 'General Sans', sans-serif;
    /*background: #191919;*/
}

header {

    padding: 1.25rem 2rem;;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: #A17EFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.logo-icon::before {
    content: '🎮';
    font-size: 24px;
}

.logo-text {
    color: #ffffff;
    font-size: 1.75rem;
    font-weight: 600;
    letter-spacing: -0.5px;
}

nav {
    display: flex;
    align-items: center;
    gap: 3rem;
    width: 700px;
    justify-content: space-evenly;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    color: #b8bcc8;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: #ffffff;
}

.nav-links a.active {
    color: #ffffff;
}

.explore-btn {
    background: #A17EFF;
    color: #ffffff;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.4);
}

.explore-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.6);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

@media (max-width: 768px) {
    header {
        padding: 1rem 1.5rem;
    }

    .logo-text {
        font-size: 1.5rem;
    }

    .logo-icon {
        width: 40px;
        height: 40px;
    }

    .logo-icon::before {
        font-size: 20px;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background: #2a2d3a;
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        gap: 2rem;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
        z-index: 100;
    }

    nav.active {
        right: 0;
    }

    .nav-links {
        flex-direction: column;
        gap: 1.5rem;
        width: 100%;
    }

    .nav-links a {
        font-size: 1.1rem;
    }

    .mobile-menu-btn {
        display: block;
        z-index: 101;
    }

    .explore-btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    header {
        padding: 1rem;
    }

    .logo-text {
        font-size: 1.3rem;
    }

    .container {
        gap: 1rem;
    }
}

/* Hero Section */
.hero {
    position: relative;
    min-height: calc(100vh - 90px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 4rem 2rem;
    flex-direction: column;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    z-index: 10;
    text-align: left;
    max-width: 900px;
}

.hero-title {


    color: #ffffff;

    margin-bottom: 1.5rem;

    font-style: normal;
    font-weight: 600;
    line-height: 80px; /* 111.111% */
    letter-spacing: -1.44px;
    font-size: 72px;
    text-align: center;

}

.hero-description {
    font-size: 1.125rem;
    color: #b8bcc8;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    font-weight: 400;
    text-align: center;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.5);
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(139, 92, 246, 0.7);
}

.cta-btn svg {
    transition: transform 0.3s ease;
}

.cta-btn:hover svg {
    transform: translateX(4px);
}

/* Decorative Elements */
.decorative-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
    pointer-events: none;
}

.sparkle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #a855f7, #ec4899);
    border-radius: 50%;
    animation: float 3s ease-in-out infinite;
}

.sparkle-1 {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.sparkle-2 {
    top: 15%;
    right: 20%;
    animation-delay: 1.5s;
}

.star {
    position: absolute;
    font-size: 4rem;
    color: #fbbf24;
    opacity: 0.9;
    animation: pulse 2s ease-in-out infinite;
}

.star-1 {
    bottom: 25%;
    left: 8%;
    font-size: 5rem;
}

.star-2 {
    top: 40%;
    right: 12%;
    font-size: 4.5rem;
    animation-delay: 1s;
}

.star-3 {
    bottom: 15%;
    right: 8%;
    font-size: 5.5rem;
    animation-delay: 0.5s;
}

.line {
    position: absolute;
    height: 3px;
    background: linear-gradient(90deg, transparent, #f97316, transparent);
    border-radius: 2px;
    animation: slide 4s ease-in-out infinite;
}

.line-1 {
    top: 35%;
    left: 10%;
    width: 80px;
}

.line-2 {
    bottom: 40%;
    right: 15%;
    width: 60px;
    animation-delay: 2s;
}

/* Characters */
.characters {
    width: 100%;
    max-width: 969px;
    height: 472px;
    object-fit: cover;
}

.character {
    position: absolute;
    width: 250px;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

.character img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: characterFloat 4s ease-in-out infinite;
}

.character-1 {
    bottom: 10%;
    left: 8%;
}

.character-2 {
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 1s;
}

.character-3 {
    bottom: 10%;
    right: 8%;
    animation-delay: 2s;
}

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.9;
    }
    50% {
        transform: scale(1.1) rotate(90deg);
        opacity: 1;
    }
}

@keyframes slide {
    0%, 100% {
        transform: translateX(0);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
}

@keyframes characterFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-30px);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .character {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 768px) {
    header {
        padding: 1rem 1.5rem;
    }

    .logo-text {
        font-size: 1.5rem;
    }

    .logo-icon {
        width: 40px;
        height: 40px;
    }

    .logo-icon::before {
        font-size: 20px;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background: #2a2d3a;
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        gap: 2rem;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
    }

    nav.active {
        right: 0;
    }

    .nav-links {
        flex-direction: column;
        gap: 1.5rem;
        width: 100%;
    }

    .nav-links a {
        font-size: 1.1rem;
    }

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

    .explore-btn {
        width: 100%;
        text-align: center;
    }

    .hero {
        padding: 3rem 1.5rem;
    }

    .hero-title {
        font-size: 2.5rem;
        letter-spacing: -1px;
    }

    .hero-description {
        font-size: 1rem;
    }

    .cta-btn {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }

    .character {
        width: 150px;
        height: 150px;
    }

    .star {
        font-size: 3rem;
    }

    .star-1,
    .star-2,
    .star-3 {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 0.9rem;
    }

    .character {
        width: 120px;
        height: 120px;
    }

    .character-2 {
        display: none;
    }
}

/* Features Section */
.features {
    position: relative;
    padding: 0 2rem;

    overflow: hidden;
}


.features-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

/* Left Side - Main Content */
.features-left {
    position: sticky;
    top: 120px;
}

.feature-label {
    color: #a78bfa;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
}

.feature-title {

    font-size: 50px;
    font-style: normal;
    font-weight: 600;
    line-height: 64px; /* 128% */
    letter-spacing: -1px;
    color: white;
}

/*.feature-title .highlight {*/
/*    color: #a855f7;*/
/*    position: relative;*/
/*}*/

/* Right Side - Feature Cards Grid (2x2) */
.features-right {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.feature-card {

    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}


.feature-card:hover {
    transform: translateY(-5px);
    /*border-color: rgba(139, 92, 246, 0.3);*/
    /*box-shadow: 0 20px 60px rgba(139, 92, 246, 0.15);*/
    /*background: rgba(42, 45, 58, 0.6);*/
}

.feature-card:hover::before {
    opacity: 1;
}

/* Feature Icon */
.feature-icon {
    position: relative;
    width: 70px;
    height: 70px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    filter: blur(25px);
    opacity: 0.5;
    animation: iconPulse 3s ease-in-out infinite;
}

.icon-glow-pink {
    background: radial-gradient(circle, #ec4899, transparent);
}

.icon-glow-yellow {
    background: radial-gradient(circle, #fbbf24, transparent);
}

.icon-glow-blue {
    background: radial-gradient(circle, #3b82f6, transparent);
}

.icon-glow-purple {
    background: radial-gradient(circle, #a855f7, transparent);
}

.feature-icon .icon {
    font-size: 2.5rem;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon .icon {
    transform: scale(1.1) rotate(5deg);
}

/* Card Content */
.card-label {
    color: #a78bfa;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.25;
    margin-bottom: 0.75rem;
    letter-spacing: -0.5px;
}

.card-description {
    color: #9ca3af;
    font-size: 0.95rem;
    line-height: 1.6;
    font-weight: 400;
}

/* Animations */
@keyframes iconPulse {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .features-container {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .feature-title {
        font-size: 3rem;
    }
}

@media (max-width: 1024px) {
    .features {
        padding: 0 2rem;
    }

    .features-container {
        gap: 3rem;
    }

    .feature-title {
        font-size: 2.5rem;
    }

    .card-title {
        font-size: 1.35rem;
    }

    .feature-card {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .features {
        padding: 4rem 1.5rem;
    }

    .features-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .features-left {
        position: static;
    }

    .feature-title {
        font-size: 2.25rem;
        letter-spacing: -1px;
    }

    .features-right {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
    }

    .feature-icon .icon {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .features {
        padding: 3rem 1rem;
    }

    .feature-title {
        font-size: 1.85rem;
    }

    .feature-card {
        padding: 1.75rem;
    }

    .card-title {
        font-size: 1.25rem;
    }

    .card-description {
        font-size: 0.9rem;
    }
}

.about {
    position: relative;
    padding: 0 2rem;

    overflow: hidden;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

/* Left Side - Character */
.about-left {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.character-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.character-image img {
    width: 100%;
    max-width: 385px;
    height: 401px;
    flex-shrink: 0;
}

.vr-character {
    display: block;
}

/* Floating Elements */
.floating-element {
    position: absolute;
    font-size: 3rem;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
    animation: float 3s ease-in-out infinite;
}

.element-1 {
    top: 10%;
    left: 15%;
    animation-delay: 0s;
}

.element-2 {
    top: 25%;
    left: 5%;
    font-size: 2.5rem;
    animation-delay: 0.5s;
}

.element-3 {
    bottom: 35%;
    right: 10%;
    font-size: 2rem;
    animation-delay: 1s;
}

.element-4 {
    bottom: 25%;
    right: 5%;
    font-size: 2.5rem;
    animation-delay: 1.5s;
}

/* Star Decorations */
.star-decoration {
    position: absolute;
    font-size: 4rem;
    color: #fbbf24;
    opacity: 0.9;
    animation: pulse 2s ease-in-out infinite;
}

.star-1 {
    top: 5%;
    right: 20%;
    font-size: 3rem;
}

.star-2 {
    bottom: 15%;
    left: 10%;
    font-size: 4.5rem;
    animation-delay: 0.7s;
}

.star-3 {
    top: 40%;
    right: 5%;
    font-size: 3.5rem;
    animation-delay: 1.3s;
}

/* Right Side - Content */
.about-right {
    position: relative;
}

.medal-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 8px 20px rgba(139, 92, 246, 0.4));
    animation: iconFloat 3s ease-in-out infinite;
}

.about-label {
    color: #a78bfa;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: capitalize;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.about-title {

    color: #ffffff;
    font-size: 56px;
    font-style: normal;
    font-weight: 600;
    line-height: 64px; /* 114.286% */
    letter-spacing: -1.12px;
}

.about-title .highlight {
    color: #a855f7;
}

.about-description {
    color: #b8bcc8;
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.play-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: transparent;
    border: 2px solid #8b5cf6;
    color: #a855f7;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s ease;
}

.play-btn:hover {
    background: #8b5cf6;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
}

.play-btn svg {
    transition: transform 0.3s ease;
}

.play-btn:hover svg {
    transform: translateX(4px);
}

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

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about {
        padding: 0 2rem;
    }

    .about-container {
        gap: 4rem;
    }

    .about-title {
        font-size: 3rem;
    }

    .character-image {
        font-size: 12rem;
    }

    .floating-element {
        font-size: 2.5rem;
    }

    .star-decoration {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .about {
        padding: 4rem 1.5rem;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-left {
        order: 2;
    }

    .about-right {
        order: 1;
        text-align: center;
    }

    .about-title {
        font-size: 2.5rem;
        letter-spacing: -1px;
    }

    .about-description {
        font-size: 1rem;
    }

    .character-image {
        font-size: 10rem;
    }

    .floating-element {
        font-size: 2rem;
    }

    .star-decoration {
        font-size: 2.5rem;
    }

    .play-btn {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .about {
        padding: 3rem 1rem;
    }

    .about-title {
        font-size: 2rem;
    }

    .about-description {
        font-size: 0.9rem;
    }

    .character-image {
        font-size: 8rem;
    }

    .floating-element {
        font-size: 1.5rem;
    }

    .star-decoration {
        font-size: 2rem;
    }

    .medal-icon {
        font-size: 3rem;
    }
}

/* Why Choose Section */
.why-choose {
    position: relative;
    padding: 8rem 2rem;

    overflow: hidden;
}

.why-choose::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 20%, rgba(139, 92, 246, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.why-choose-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

/* Header Section */
.why-choose-header {
    text-align: center;
    margin-bottom: 6rem;
}

.lightbulb-icon {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 10px 30px rgba(251, 191, 36, 0.4));
    animation: iconFloat 3s ease-in-out infinite;
}

.why-choose-label {
    color: #a78bfa;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: capitalize;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.why-choose-title {
    font-size: 4rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
}

.why-choose-title .highlight {
    color: #a855f7;
}

.why-choose-description {
    color: #9ca3af;
    font-size: 1.125rem;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 400;
}

/* Features Grid */
.why-choose-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.why-feature {
    position: relative;
    padding: 2.5rem 2rem;
    transition: transform 0.3s ease;
}

.why-feature:hover {
    transform: translateY(-5px);
}

.feature-number {
    font-size: 4rem;
    font-weight: 700;
    background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.feature-heading {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.3;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.feature-text {
    color: #9ca3af;
    font-size: 1rem;
    line-height: 1.7;
    font-weight: 400;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .why-choose {
        padding: 6rem 2rem;
    }

    .why-choose-header {
        margin-bottom: 4rem;
    }

    .why-choose-title {
        font-size: 3rem;
    }

    .why-choose-features {
        gap: 2.5rem;
    }

    .feature-heading {
        font-size: 1.5rem;
    }

    .lightbulb-icon {
        font-size: 4rem;
    }
}

@media (max-width: 768px) {
    .why-choose {
        padding: 4rem 1.5rem;
    }

    .why-choose-title {
        font-size: 2.5rem;
        letter-spacing: -1px;
    }

    .why-choose-description {
        font-size: 1rem;
    }

    .why-choose-features {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .why-feature {
        padding: 2rem 1.5rem;
        background: rgba(42, 45, 58, 0.3);
        border-radius: 16px;
        border: 1px solid rgba(139, 92, 246, 0.1);
    }

    .feature-number {
        font-size: 3rem;
    }

    .feature-heading {
        font-size: 1.4rem;
    }

    .lightbulb-icon {
        font-size: 3.5rem;
    }
}

@media (max-width: 480px) {
    .why-choose {
        padding: 3rem 1rem;
    }

    .why-choose-title {
        font-size: 2rem;
    }

    .why-choose-description {
        font-size: 0.9rem;
    }

    .why-feature {
        padding: 1.75rem 1.25rem;
    }

    .feature-number {
        font-size: 2.5rem;
    }

    .feature-heading {
        font-size: 1.25rem;
    }

    .feature-text {
        font-size: 0.9rem;
    }

    .lightbulb-icon {
        font-size: 3rem;
    }
}

/* Additional Animation */
@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(5deg);
    }
}

.icon-text {
    color: #A17EFF;


    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px; /* 150% */
    letter-spacing: 0.32px;
}

.container {
    position: relative;
    display: flex;
    align-items: center;

    padding: 20px;
    max-width: 1200px;
    width: 100%;
}

.icon {
    width: 50px;
    height: 50px;
    background-size: contain;
}

.icon img {
    width: 50px;
    height: 50px;
    background-size: contain;
}

.flex {
    display: flex;
    flex-direction: column;
}

.feedback-section {
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.title3 {

    margin: 0 20px 0 0;
    color: #FFF;


    font-size: 45px;
    font-style: normal;
    font-weight: 600;
    line-height: 64px; /* 114.286% */
    letter-spacing: -1.12px;
}

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

.nav-btn {
    width: 40px;
    height: 40px;
    background: #a3a0ff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2em;
}

.testimonial {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;

    padding: 15px;
    width: 250px;
    flex-shrink: 0;
    transition: transform 0.5s ease;
}

.testimonial img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 10px;
}

.quote {


    margin: 10px 0;
    color: rgba(255, 255, 255, 0.90);


    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
    letter-spacing: 0.32px;
}

.name {

    margin: 5px 0;
    color: #FFF;
    text-align: center;

    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 40px; /* 125% */
    letter-spacing: -0.64px;
}

.role {


    color: rgba(255, 255, 255, 0.75);
    text-align: center;

    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px; /* 150% */
    letter-spacing: 0.32px;
}

.stars {
    color: #ffd700;
    font-size: 1.2em;
}

.slider {
    display: flex;
    flex-wrap: wrap;
    transition: transform 0.5s ease;
    gap: 40px;
}

.slider-container {
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
    width: calc(750px + 125px); /* 3 cards width (2.5 visible + 0.5 hidden) */
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
        padding: 10px;
    }

    .feedback-section {
        flex-direction: column;
        gap: 10px;
    }

    .title {
        font-size: 1.5em;
        margin: 0 0 10px 0;
    }

    .testimonial {
        width: 100%;
    }

    .slider-container {
        width: 100%;
    }

    .slider {
        transform: translateX(0) !important;
    }
}

.pink {
    width: 25px !important;
    height: 20px !important;
}

@media (max-width: 960px) {
    .feedback-section {
        display: flex;
        align-items: flex-start;

        flex-direction: column;
    }

}

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

/* Header Section */
.header-section {
    text-align: center;
    padding: 80px 20px 60px;
}

.mailbox-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    position: relative;
}

.mailbox-icon img {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    position: relative;
}

.mailbox {
    width: 60px;
    height: 50px;
    background: #e74c3c;
    border-radius: 8px;
    position: relative;
    margin: 0 auto;
}

.mailbox::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 15px;
    height: 15px;
    background: #fff;
    border-radius: 50%;
}

.mailbox::after {
    content: '';
    position: absolute;
    top: 15px;
    right: 10px;
    width: 28px;
    height: 22px;
    background: #f9d71c;
    border-radius: 3px;
}

.mailbox-flag {
    position: absolute;
    top: 5px;
    right: -5px;
    width: 20px;
    height: 3px;
    background: #c0392b;
}

.subscribe-text {
    font-size: 13px;
    color: #a78bfa;
    margin-bottom: 15px;
    font-weight: 500;
}

.main-title {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.2;
    color: white;
}

.description {

    max-width: 550px;
    margin: 0 auto 35px;

    color: rgba(255, 255, 255, 0.75);
    text-align: center;


    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
    letter-spacing: 0.32px;
}

.description strong {
    color: #fff;
    font-weight: 600;
}

.cta-button {
    display: inline-block;
    padding: 15px 35px;
    background: linear-gradient(135deg, #a78bfa 0%, #8b5cf6 100%);
    color: #fff;
    text-decoration: none;

    font-size: 16px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
    border-radius: 52px;
    border: 1px solid #A7ADBA;

}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(167, 139, 250, 0.4);
}

/* Footer Section */
.footer-section {
    padding: 60px 20px 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-brand {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.brand-icon {
    width: 40px;
    height: 40px;
    /*background: #fff;*/
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.brand-content h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
    color: white;
}

.brand-content p {
    font-size: 14px;
    color: #b8b8b8;
    line-height: 1.6;
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 100px;
    background: #A17EFF;

}

.social-icon:hover {
    background: #a78bfa;
}

.footer-column h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #b8b8b8;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #fff;
}

.contact-info p {
    font-size: 14px;
    color: #b8b8b8;
    margin-bottom: 10px;
    line-height: 1.6;
}

.contact-info strong {
    color: #fff;
    font-weight: 600;
}

.copyright {
    text-align: left;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 13px;
    color: #888;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .main-title {
        font-size: 36px;
    }

    .description {
        font-size: 15px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .header-section {
        padding: 60px 20px 40px;
    }

    .footer-section {
        padding: 40px 20px 30px;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 28px;
    }

    .cta-button {
        padding: 12px 28px;
        font-size: 15px;
    }

    .mailbox-icon {
        width: 60px;
        height: 60px;
    }

    .mailbox {
        width: 50px;
        height: 40px;
    }
}

.games-section {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    font-size: 16px;
    color: #a78bfa;
    font-weight: 500;
    margin-bottom: 15px;
}

.section-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    color: white;
}

.section-title .dot {
    color: #8b5cf6;
}

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

.game-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    aspect-ratio: 1;
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

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

/* Placeholder images with colors */
.game-card-1 {
    background: linear-gradient(135deg, #fff8e1 0%, #ffeb3b 100%);
}

.game-card-2 {
    background: linear-gradient(135deg, #0288d1 0%, #01579b 100%);
}

.game-card-3 {
    background: linear-gradient(135deg, #ffd54f 0%, #81c784 100%);
}

.game-card-4 {
    background: linear-gradient(135deg, #ff6f00 0%, #000000 100%);
}

.game-card-5 {
    background: linear-gradient(135deg, #4fc3f7 0%, #0277bd 100%);
}

.game-card-6 {
    background: linear-gradient(135deg, #1565c0 0%, #0d47a1 100%);
}

.game-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .section-title {
        font-size: 48px;
    }

    .games-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    /*body {*/
    /*    padding: 40px 15px;*/
    /*}*/

    .section-header {
        margin-bottom: 40px;
    }

    .section-title {
        font-size: 36px;
    }

    .section-label {
        font-size: 14px;
    }

    .games-grid {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    /*body {*/
    /*    padding: 30px 15px;*/
    /*}*/

    .section-title {
        font-size: 28px;
    }

    .games-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .game-card {
        max-width: 400px;
        margin: 0 auto;
    }
}

/* Hero Section */
.container1 {
    display: flex;
    flex-direction: column;
}

.hero-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 80px;
    margin-bottom: 100px;
    width: 100%;
}

.hero-content {
    flex: 1;
    max-width: 480px;
}


.hero-content h1 {
    color: white;
    font-size: 52px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 14px;
    color: #b8b8b8;
    line-height: 1.7;
    margin-bottom: 25px;
}

.play-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: #A17EFF;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s;
}

.play-button:hover {
    background: #8b5cf6;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(124, 58, 237, 0.4);
}

.hero-image {
    flex: 1;
    position: relative;
    max-width: 450px;
}

.game-preview {
    /*background: #fff;*/
    border-radius: 24px;
    padding: 15px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    position: relative;
}

.game-image {
    width: 100%;
    aspect-ratio: 1;
    /*background: linear-gradient(135deg, #b8e6f0 0%, #fff9c4 50%, #ffe082 100%);*/
    border-radius: 18px;
    display: flex;

    justify-content: center;
    font-size: 80px;
    overflow: hidden;
    position: relative;
}

/* Sparkles */
.sparkle {
    position: absolute;
    font-size: 32px;
    animation: sparkleFloat 3s ease-in-out infinite;
}

.sparkle-1 {
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.sparkle-2 {
    bottom: -15px;
    right: -15px;
    font-size: 40px;
    animation-delay: 1.5s;
}

@keyframes sparkleFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
        opacity: 1;
    }
    50% {
        transform: translateY(-5px) rotate(180deg) scale(1.1);
        opacity: 0.8;
    }
}

/* Game Highlights Section */
.highlights-section {
    text-align: center;
}

.section-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 60px;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    text-align: left;
}

.highlight-card {
    position: relative;
    text-align: center;
}

.highlight-number {
    font-size: 64px;
    font-weight: 700;
    background: #A17EFF;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 15px;
}

.highlight-card h3 {
    color: white;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}

.highlight-card p {
    font-size: 14px;
    color: #a8a8a8;
    line-height: 1.7;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-section {
        gap: 50px;
    }

    .hero-content h1 {
        font-size: 44px;
    }

    .highlights-grid {
        gap: 40px;
    }

    .section-title {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    /*body {*/
    /*    padding: 40px 20px;*/
    /*}*/

    .hero-section {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 80px;
    }

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

    .hero-content h1 {
        font-size: 38px;
    }

    .section-title {
        font-size: 36px;
        margin-bottom: 50px;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .highlight-number {
        font-size: 56px;
    }
}

@media (max-width: 480px) {
    /*body {*/
    /*    padding: 30px 15px;*/
    /*}*/

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

    .hero-content p {
        font-size: 13px;
    }

    .play-button {
        padding: 10px 24px;
        font-size: 14px;
    }

    .game-image {
        font-size: 60px;
    }

    .section-icon {
        font-size: 40px;
    }

    .section-title {
        font-size: 28px;
    }

    .highlight-number {
        font-size: 48px;
    }

    .highlight-card h3 {
        font-size: 20px;
    }

    .sparkle-1 {
        font-size: 24px;
    }

    .sparkle-2 {
        font-size: 32px;
    }
}

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

.hero-content1 {

    display: flex;
    flex-direction: column;
    align-items: center;
}

.container2 {
    display: flex;
    flex-direction: row;
    padding: 0;
}