 :root {
            --primary: #FF6B9D;
            --secondary: #4ECDC4;
            --accent: #FFE66D;
            --orange: #FF8C42;
            --purple: #9B59B6;
            --green: #27AE60;
            --dark: #2C3E50;
            --light: #FFFBF7;
            --white: #FFFFFF;
            --shadow: rgba(0, 0, 0, 0.1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--light);
            color: var(--dark);
            overflow-x: hidden;
            line-height: 1.6;
        }

        h1, h2, h3, h4 {
            font-family: 'Fredoka', cursive;
            font-weight: 700;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: var(--white);
            box-shadow: 0 2px 30px var(--shadow);
            z-index: 1000;
            transition: all 0.3s ease;
        }

        header.scrolled {
            padding: 10px 0;
            box-shadow: 0 4px 40px var(--shadow);
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary);
            text-decoration: none;
            transition: transform 0.3s ease;
        }

        .logo:hover {
            transform: scale(1.05);
        }

        .logo i {
            font-size: 2rem;
        }

        .logo img{
            width: 30%;
        }

        .nav-menu {
            display: flex;
            align-items: center;
            gap: 35px;
        }

        .nav-menu a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-menu a:not(.btn-primary):after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--primary);
            transition: width 0.3s ease;
            border-radius: 2px;
        }

        .nav-menu a:not(.btn-primary):hover:after {
            width: 100%;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--primary), #FF8FB1);
            color: var(--white) !important;
            padding: 12px 28px;
            border-radius: 50px;
            font-weight: 700;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 107, 157, 0.4);
        }

        .mobile-toggle {
            display: none;
            font-size: 1.8rem;
            color: var(--dark);
            cursor: pointer;
        }

        .hero {
            padding: 140px 0 80px;
            background: linear-gradient(135deg, #FFF5F8 0%, #FFF9E6 100%);
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(255, 107, 157, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            animation: float 20s ease-in-out infinite;
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(78, 205, 196, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            animation: float 15s ease-in-out infinite reverse;
        }

        @keyframes float {
            0%, 100% { transform: translate(0, 0); }
            50% { transform: translate(50px, 50px); }
        }

        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
        }

        .hero h1 {
            font-size: 3.5rem;
            line-height: 1.2;
            margin-bottom: 25px;
            color: var(--dark);
            animation: fadeInUp 0.8s ease;
        }

        .hero h1 .highlight {
            color: var(--secondary);
            position: relative;
            display: inline-block;
        }

        .hero h1 .highlight-pink {
            color: var(--primary);
        }

        .hero p {
            font-size: 1.3rem;
            color: #555;
            margin-bottom: 40px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            animation: fadeInUp 0.8s ease 0.2s;
            animation-fill-mode: both;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .slider-container {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            border-radius: 30px;
            overflow: hidden;
            box-shadow: 0 20px 60px var(--shadow);
            animation: fadeInUp 0.8s ease 0.4s;
            animation-fill-mode: both;
        }

        .slide-wrapper {
            display: flex;
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .slide {
            min-width: 100%;
            height: 500px;
            position: relative;
        }

        .slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .slider-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: var(--white);
            color: var(--primary);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            font-size: 1.3rem;
            cursor: pointer;
            z-index: 10;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px var(--shadow);
        }

        .slider-btn:hover {
            background: var(--primary);
            color: var(--white);
            transform: translateY(-50%) scale(1.1);
        }

        #prevBtn { left: 20px; }
        #nextBtn { right: 20px; }

        .slider-dots {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 10;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: var(--white);
            opacity: 0.5;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active {
            opacity: 1;
            width: 32px;
            border-radius: 6px;
        }

        section {
            padding: 80px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title h2 {
            font-size: 2.8rem;
            color: var(--dark);
            margin-bottom: 15px;
        }

        .section-title p {
            font-size: 1.2rem;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
        }

        .decorative-dots {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-top: 20px;
        }

        .decorative-dots span {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            display: inline-block;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }

        .feature-card {
            background: var(--white);
            border-radius: 25px;
            padding: 40px 30px;
            text-align: center;
            transition: all 0.4s ease;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .feature-card:hover::before {
            transform: scaleX(1);
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            margin: 0 auto 25px;
            transition: all 0.4s ease;
        }

        .feature-card:hover .feature-icon {
            transform: rotateY(360deg);
        }

        .icon-purple {
            background: linear-gradient(135deg, #E8D5F5, #D5B8EC);
            color: var(--purple);
        }

        .icon-blue {
            background: linear-gradient(135deg, #D4F1F4, #A8E6E3);
            color: var(--secondary);
        }

        .icon-orange {
            background: linear-gradient(135deg, #FFE5D0, #FFCBA4);
            color: var(--orange);
        }

        .feature-card h3 {
            font-size: 1.6rem;
            margin-bottom: 15px;
            color: var(--dark);
        }

        .feature-card p {
            color: #666;
            line-height: 1.7;
            font-size: 1.05rem;
        }

        .game-banner {
            background: linear-gradient(135deg, #A55EEA, #C471ED);
            border-radius: 40px;
            padding: 60px;
            text-align: center;
            position: relative;
            overflow: hidden;
            color: var(--white);
        }

        .game-banner::before,
        .game-banner::after {
            content: '';
            position: absolute;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
        }

        .game-banner::before {
            top: -100px;
            left: -100px;
        }

        .game-banner::after {
            bottom: -100px;
            right: -100px;
        }

        .game-banner-content {
            position: relative;
            z-index: 2;
        }

        .game-banner h2 {
            font-size: 3rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
        }

        .game-banner p {
            font-size: 1.2rem;
            margin-bottom: 35px;
            opacity: 0.95;
        }

        .btn-play {
            background: var(--accent);
            color: var(--dark);
            padding: 18px 45px;
            border-radius: 50px;
            font-size: 1.4rem;
            font-weight: 700;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            transition: all 0.3s ease;
            box-shadow: 0 8px 20px rgba(255, 230, 109, 0.4);
            text-decoration: none;
        }

        .btn-play:hover {
            transform: scale(1.05);
            box-shadow: 0 12px 30px rgba(255, 230, 109, 0.5);
        }

        .btn-play:active {
            transform: scale(0.98);
        }

        .gallery-section {
            background: var(--white);
        }

        .gallery-wrapper {
            display: flex;
            gap: 25px;
            overflow-x: auto;
            padding: 30px 0;
            scroll-behavior: smooth;
            scrollbar-width: thin;
            scrollbar-color: var(--primary) #f0f0f0;
        }

        .gallery-wrapper::-webkit-scrollbar {
            height: 8px;
        }

        .gallery-wrapper::-webkit-scrollbar-track {
            background: #f0f0f0;
            border-radius: 10px;
        }

        .gallery-wrapper::-webkit-scrollbar-thumb {
            background: var(--primary);
            border-radius: 10px;
        }

        .gallery-item {
            min-width: 300px;
            height: 300px;
            border-radius: 20px;
            overflow: hidden;
            position: relative;
            box-shadow: 0 10px 30px var(--shadow);
            transition: all 0.3s ease;
        }

        .gallery-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px var(--shadow);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .gallery-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(255, 107, 157, 0.9), rgba(165, 94, 234, 0.9));
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        .gallery-overlay i {
            font-size: 3rem;
            color: var(--white);
        }

        .testimonials {
            background: linear-gradient(135deg, #F0FFF4 0%, #E8F8F5 100%);
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 35px;
        }

        .testimonial-card {
            background: var(--white);
            border-radius: 25px;
            padding: 35px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            border-top: 4px solid var(--green);
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }

        .rating {
            color: var(--accent);
            font-size: 1.2rem;
            margin-bottom: 15px;
        }

        .testimonial-card blockquote {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #555;
            font-style: italic;
            margin-bottom: 20px;
        }

        .author {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-top: 20px;
        }

        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-weight: 700;
            font-size: 1.3rem;
        }

        .author-info strong {
            display: block;
            color: var(--dark);
            font-weight: 700;
        }

        .author-info small {
            color: var(--green);
            font-weight: 600;
        }

        .map-section {
            background: var(--white);
        }

        .map-container {
            width: 100%;
            height: 450px;
            border-radius: 25px;
            overflow: hidden;
            box-shadow: 0 15px 50px var(--shadow);
            margin-top: 30px;
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
        }

        .location-info {
            text-align: center;
            margin-top: 25px;
        }

        .location-info p {
            font-size: 1.1rem;
            color: #666;
            font-weight: 600;
        }

        .location-info i {
            color: var(--primary);
            margin-right: 8px;
        }

        footer {
            background: var(--dark);
            color: var(--white);
            padding: 60px 0 30px;
            text-align: center;
        }

        .footer-logo {
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 15px;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .footer-logo i {
            font-size: 3.5rem;
        }

        .footer-description {
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 0;
            font-size: 1.5rem;
        }

        .footer-social {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 30px;
        }

        .social-link {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.3rem;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .social-link:hover {
            background: var(--primary);
            transform: translateY(-5px);
        }

        .footer-bottom {
            margin-top: 40px;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.95rem;
        }

        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 65px;
            height: 65px;
            border-radius: 50%;
            background: #25D366;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 2rem;
            box-shadow: 0 5px 25px rgba(37, 211, 102, 0.5);
            z-index: 999;
            transition: all 0.3s ease;
            text-decoration: none;
            animation: pulse 2s infinite;
        }

        .whatsapp-float:hover {
            transform: scale(1.1);
            box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
        }

        @keyframes pulse {
            0%, 100% { box-shadow: 0 5px 25px rgba(37, 211, 102, 0.5); }
            50% { box-shadow: 0 5px 35px rgba(37, 211, 102, 0.8); }
        }

        @media (max-width: 768px) {
            .mobile-toggle {
                display: block;
            }

            .nav-menu {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                background: var(--white);
                flex-direction: column;
                padding: 30px;
                box-shadow: 0 5px 30px var(--shadow);
                transition: left 0.3s ease;
            }

            .nav-menu.active {
                left: 0;
            }

            .hero {
                padding: 100px 0 50px;
            }

            .hero h1 {
                font-size: 2.2rem;
            }

            .hero p {
                font-size: 1.1rem;
            }

            .slide {
                height: 300px;
            }

            .section-title h2 {
                font-size: 2rem;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }

            .game-banner {
                padding: 40px 25px;
            }

            .game-banner h2 {
                font-size: 2rem;
            }

            .btn-play {
                font-size: 1.2rem;
                padding: 15px 35px;
            }

            .testimonials-grid {
                grid-template-columns: 1fr;
            }

            .map-container {
                height: 300px;
            }

            .whatsapp-float {
                width: 55px;
                height: 55px;
                bottom: 20px;
                right: 20px;
                font-size: 1.7rem;
            }
        }