 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #A359A0;
            --secondary: #FFFFFF;
            --accent: #A359A0;
            --circular: #6BA368;
            --animation-blue: #4FC3F7;
            --animation-orange: #FF7043;
            --animation-yellow: #FFD54F;
            --animation-pink: #F48FB1;
            --gradient-1: linear-gradient(45deg, #A359A0, #4FC3F7);
            --gradient-2: linear-gradient(45deg, #6BA368, #FFD54F);
            --gradient-3: linear-gradient(45deg, #FF7043, #F48FB1);
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background: var(--secondary);
            overflow-x: hidden;
        }

        /* Header */
        .header {
            background: linear-gradient(135deg, var(--primary), var(--accent), var(--animation-blue));
            color: var(--secondary);
            padding: 1rem 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
            animation: slideDown 0.8s ease-out, headerGlow 3s ease-in-out infinite;
            background-size: 300% 300%;
            box-shadow: 0 4px 20px rgba(163, 89, 160, 0.3);
        }

        .nav {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 2rem;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            animation: fadeInLeft 1s ease-out, logoFloat 4s ease-in-out infinite;
            background: linear-gradient(45deg, var(--secondary), var(--animation-yellow), var(--animation-pink));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            background-size: 200% 200%;
            animation: fadeInLeft 1s ease-out, logoGradient 3s ease-in-out infinite;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        .nav-links a {
            color: var(--secondary);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-links a:hover {
            transform: translateY(-2px);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--animation-yellow), var(--animation-orange));
            transition: width 0.3s ease;
            box-shadow: 0 0 10px var(--animation-yellow);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        /* Mobile Navigation */
.hamburger {
    display: none;
    cursor: pointer;
    padding: 10px;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: #fff;
    transition: all 0.3s ease-in-out;
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(163, 89, 160, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 20px 0;
        z-index: 1000;
        gap: 1rem;
        display: flex;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links li {
        margin: 10px 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, var(--primary), var(--accent), var(--animation-blue), var(--animation-pink));
            background-size: 400% 400%;
            animation: gradientShift 8s ease-in-out infinite;
            color: var(--secondary);
            padding: 120px 0 80px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            animation: rotate 20s linear infinite;
        }

        .hero::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 50%, var(--animation-yellow) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, var(--animation-orange) 0%, transparent 50%),
                radial-gradient(circle at 40% 80%, var(--animation-blue) 0%, transparent 50%);
            opacity: 0.1;
            animation: floatingBubbles 15s ease-in-out infinite;
        }

        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 2rem;
            position: relative;
            z-index: 2;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            animation: fadeInUp 1s ease-out 0.3s both, textGlow 2s ease-in-out infinite alternate;
            text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
        }

        .hero-subtitle {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            opacity: 0.9;
            animation: fadeInUp 1s ease-out 0.6s both;
        }

        .cta-button {
            background: linear-gradient(45deg, var(--circular), var(--animation-yellow), var(--animation-orange));
            background-size: 200% 200%;
            animation: fadeInUp 1s ease-out 0.9s both, buttonGradient 3s ease-in-out infinite;
            color: var(--secondary);
            padding: 15px 40px;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            box-shadow: 0 5px 15px rgba(107, 163, 104, 0.3), 0 0 20px rgba(255, 213, 79, 0.4);
            position: relative;
            overflow: hidden;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: left 0.6s ease;
        }

        .cta-button:hover::before {
            left: 100%;
        }

        .cta-button:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 8px 25px rgba(107, 163, 104, 0.4), 0 0 30px rgba(255, 213, 79, 0.6);
        }

        /* Features Section */
        .features {
            padding: 80px 0;
            background: var(--secondary);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 3rem;
            animation: fadeInUp 1s ease-out;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-bottom: 4rem;
        }

        .feature-card {
            background: var(--secondary);
            padding: 2rem;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(163, 89, 160, 0.1);
            transition: all 0.3s ease;
            animation: fadeInUp 1s ease-out;
            border: 2px solid transparent;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(163, 89, 160, 0.2);
            border-color: var(--primary);
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            background: var(--gradient-1);
            border-radius: 50%;
            margin: 0 auto 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--secondary);
            font-size: 1.5rem;
            animation: pulse 2s ease-in-out infinite, iconFloat 4s ease-in-out infinite;
            box-shadow: 0 5px 15px rgba(163, 89, 160, 0.3), 0 0 20px rgba(79, 195, 247, 0.4);
            position: relative;
            overflow: hidden;
        }

        .feature-icon::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
            animation: iconShine 3s ease-in-out infinite;
        }

        .feature-card h3 {
            color: var(--primary);
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }

        .feature-card p {
            color: #666;
            line-height: 1.6;
        }

        .feature-card:nth-child(1) .feature-icon {
            background: var(--gradient-1);
        }

        .feature-card:nth-child(2) .feature-icon {
            background: var(--gradient-2);
        }

        .feature-card:nth-child(3) .feature-icon {
            background: var(--gradient-3);
        }

        .feature-card:nth-child(4) .feature-icon {
            background: linear-gradient(45deg, var(--primary), var(--animation-pink));
        }

        /* Description Section */
        .description {
            background: linear-gradient(135deg, rgba(163, 89, 160, 0.05), rgba(107, 163, 104, 0.05));
            padding: 80px 0;
        }

        .description-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .description-text {
            animation: fadeInLeft 1s ease-out;
        }

        .description-text h2 {
            color: var(--primary);
            font-size: 2.2rem;
            margin-bottom: 1.5rem;
        }

        .description-text p {
            color: #666;
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }

        .screenshot-placeholder {
            background: linear-gradient(135deg, var(--primary), var(--circular), var(--animation-blue));
            background-size: 300% 300%;
            animation: fadeInRight 1s ease-out, gradientShift 6s ease-in-out infinite;
            border-radius: 15px;
            height: 300px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--secondary);
            font-size: 1.2rem;
            box-shadow: 0 15px 35px rgba(163, 89, 160, 0.3), 0 0 25px rgba(79, 195, 247, 0.4);
            position: relative;
            overflow: hidden;
        }

        .screenshot-placeholder::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(45deg, var(--animation-yellow), var(--animation-orange), var(--animation-pink), var(--animation-blue));
            background-size: 400% 400%;
            animation: borderGlow 4s ease-in-out infinite;
            border-radius: 17px;
            z-index: -1;
        }

        /* Benefits Section */
        .benefits {
            padding: 80px 0;
            background: var(--secondary);
        }

        .benefits-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .benefit-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            padding: 1.5rem;
            background: var(--secondary);
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(163, 89, 160, 0.1);
            animation: fadeInUp 1s ease-out;
            transition: all 0.3s ease;
        }

        .benefit-item:hover {
            transform: translateX(10px);
            box-shadow: 0 8px 25px rgba(163, 89, 160, 0.15);
        }

        .benefit-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(45deg, var(--circular), var(--animation-yellow));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--secondary);
            font-weight: bold;
            flex-shrink: 0;
            animation: iconBounce 3s ease-in-out infinite;
            box-shadow: 0 3px 10px rgba(107, 163, 104, 0.4), 0 0 15px rgba(255, 213, 79, 0.3);
        }

        .benefit-text h4 {
            color: var(--primary);
            margin-bottom: 0.5rem;
            font-size: 1.1rem;
        }

        .benefit-text p {
            color: #666;
            font-size: 0.95rem;
        }

        /* Footer */
        .footer {
            background: linear-gradient(135deg, var(--primary), var(--accent), var(--animation-blue));
            background-size: 300% 300%;
            animation: gradientShift 8s ease-in-out infinite;
            color: var(--secondary);
            padding: 40px 0 20px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 70% 30%, var(--animation-orange) 0%, transparent 50%),
                radial-gradient(circle at 30% 70%, var(--animation-pink) 0%, transparent 50%);
            opacity: 0.1;
            animation: floatingBubbles 12s ease-in-out infinite reverse;
        }

        .footer-content {
            margin-bottom: 2rem;
        }

        .footer h3 {
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }

        .footer p {
            opacity: 0.9;
            margin-bottom: 1rem;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            padding-top: 1rem;
            font-size: 0.9rem;
            opacity: 0.8;
        }

        /* New Animations */
        @keyframes headerGlow {
            0%, 100% {
                background-position: 0% 50%;
            }
            50% {
                background-position: 100% 50%;
            }
        }

        @keyframes logoGradient {
            0%, 100% {
                background-position: 0% 50%;
            }
            50% {
                background-position: 100% 50%;
            }
        }

        @keyframes logoFloat {
            0%, 100% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-5px);
            }
        }

        @keyframes gradientShift {
            0% {
                background-position: 0% 50%;
            }
            50% {
                background-position: 100% 50%;
            }
            100% {
                background-position: 0% 50%;
            }
        }

        @keyframes floatingBubbles {
            0%, 100% {
                transform: translateY(0px) translateX(0px);
            }
            33% {
                transform: translateY(-20px) translateX(10px);
            }
            66% {
                transform: translateY(10px) translateX(-10px);
            }
        }

        @keyframes textGlow {
            0% {
                text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
            }
            100% {
                text-shadow: 0 0 30px rgba(255, 255, 255, 0.8), 0 0 40px rgba(163, 89, 160, 0.3);
            }
        }

        @keyframes buttonGradient {
            0%, 100% {
                background-position: 0% 50%;
            }
            50% {
                background-position: 100% 50%;
            }
        }

        @keyframes iconFloat {
            0%, 100% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-8px);
            }
        }

        @keyframes iconShine {
            0% {
                transform: translateX(-100%) translateY(-100%) rotate(45deg);
            }
            50% {
                transform: translateX(100%) translateY(100%) rotate(45deg);
            }
            100% {
                transform: translateX(-100%) translateY(-100%) rotate(45deg);
            }
        }

        @keyframes iconBounce {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.1);
            }
        }

        @keyframes borderGlow {
            0%, 100% {
                background-position: 0% 50%;
            }
            50% {
                background-position: 100% 50%;
            }
        }
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideDown {
            from {
                transform: translateY(-100%);
            }
            to {
                transform: translateY(0);
            }
        }

        @keyframes rotate {
            from {
                transform: rotate(0deg);
            }
            to {
                transform: rotate(360deg);
            }
        }

        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }

            .hero-subtitle {
                font-size: 1.1rem;
            }

            .description-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .nav-links {
                display: none;
            }

            .container {
                padding: 0 1rem;
            }
        }

        /* Scroll animations */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease-out;
        }

        .animate-on-scroll.animate {
            opacity: 1;
            transform: translateY(0);
        }

        .screenshots-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2.5rem;
            margin-top: 2rem;
        }

        .screenshot-item {
            background: var(--secondary);
            padding: 1.5rem;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(163, 89, 160, 0.1);
            transition: all 0.3s ease;
            animation: fadeInUp 1s ease-out;
            border: 2px solid transparent;
        }

        .screenshot-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(163, 89, 160, 0.2);
            border-color: var(--primary);
        }

        .screenshot-image {
            width: 100%;
            max-width: 200px;
            height: auto;
            border-radius: 10px;
            margin-bottom: 1rem;
            box-shadow: 0 8px 20px rgba(163, 89, 160, 0.15);
            transition: all 0.3s ease;
            background: linear-gradient(135deg, #f8f9fa, #e9ecef);
            border: 1px solid #dee2e6;
        }

        .screenshot-image:hover {
            transform: scale(1.05);
            box-shadow: 0 12px 30px rgba(163, 89, 160, 0.25);
        }

        .screenshot-item h3 {
            color: var(--primary);
            margin-bottom: 0.5rem;
            font-size: 1.2rem;
            font-weight: 600;
        }

        .screenshot-item p {
            color: #666;
            font-size: 0.95rem;
            line-height: 1.4;
        }

        /* Responsive adjustments for screenshots */
        @media (max-width: 768px) {
            .screenshots-grid {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                gap: 1.5rem;
            }
            
            .screenshot-image {
                max-width: 180px;
            }
        }

        @media (max-width: 480px) {
            .screenshots-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
            
            .screenshot-item {
                padding: 1rem;
            }
        }


        .terms-container {
            max-width: 900px;
            margin: 0 auto;
            background: var(--secondary);
            border-radius: 15px;
            padding: 3rem;
            box-shadow: 0 10px 30px rgba(163, 89, 160, 0.1);
            border: 2px solid transparent;
            transition: all 0.3s ease;
        }

        .terms-container:hover {
            border-color: rgba(163, 89, 160, 0.2);
            box-shadow: 0 15px 40px rgba(163, 89, 160, 0.15);
        }

        .terms-header {
            text-align: center;
            margin-bottom: 2rem;
            padding-bottom: 1.5rem;
            border-bottom: 2px solid rgba(163, 89, 160, 0.1);
        }

        .last-updated {
            color: #666;
            font-style: italic;
            margin-top: 0.5rem;
            font-size: 0.95rem;
        }

        .terms-intro {
            background: linear-gradient(135deg, rgba(163, 89, 160, 0.05), rgba(107, 163, 104, 0.05));
            padding: 1.5rem;
            border-radius: 10px;
            margin-bottom: 2rem;
            border-left: 4px solid var(--primary);
        }

        .terms-intro p {
            color: #555;
            font-size: 1.05rem;
            line-height: 1.7;
            margin: 0;
        }

        .terms-section {
            margin-bottom: 2.5rem;
            padding: 1.5rem 0;
            border-bottom: 1px solid rgba(163, 89, 160, 0.1);
        }

        .terms-section:last-child {
            border-bottom: none;
            margin-bottom: 0;
        }

        .terms-section h3 {
            color: var(--primary);
            font-size: 1.4rem;
            margin-bottom: 1rem;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .terms-section h3::before {
            content: '';
            width: 4px;
            height: 20px;
            background: linear-gradient(45deg, var(--primary), var(--animation-blue));
            border-radius: 2px;
        }

        .terms-section p {
            color: #666;
            line-height: 1.7;
            margin-bottom: 1rem;
            font-size: 1rem;
        }

        .terms-section ul {
            list-style: none;
            padding-left: 0;
        }

        .terms-section li {
            color: #666;
            line-height: 1.7;
            margin-bottom: 0.8rem;
            padding-left: 1.5rem;
            position: relative;
            font-size: 1rem;
        }

        .terms-section li::before {
            content: '•';
            color: var(--primary);
            font-size: 1.2rem;
            position: absolute;
            left: 0;
            top: 0;
        }

        .contact-email {
            color: var(--primary);
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            padding: 2px 6px;
            border-radius: 4px;
        }

        .contact-email:hover {
            background: rgba(163, 89, 160, 0.1);
            color: var(--accent);
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .terms-container {
                padding: 2rem 1.5rem;
                margin: 0 1rem;
            }
            
            .terms-section h3 {
                font-size: 1.2rem;
            }
            
            .terms-section p,
            .terms-section li {
                font-size: 0.95rem;
            }
        }

        @media (max-width: 480px) {
            .terms-container {
                padding: 1.5rem 1rem;
                margin: 0 0.5rem;
            }
            
            .terms-section {
                margin-bottom: 2rem;
            }
        }