@charset "UTF-8";

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            --accent: #ff6b9d;
            --dark: #0f1419;
            --light: #f8f9ff;
            --text: #1a1f36;
            --text-light: #6b7280;
            --border: #e5e7eb;
            --shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
        }

        @media (prefers-color-scheme: dark) {
            :root {
                --dark: #0f1419;
                --light: #1a1f36;
                --text: #f8f9ff;
                --text-light: #9ca3af;
                --border: #2d3748;
            }
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            line-height: 1.6;
            color: var(--text);
            background-color: var(--light);
            overflow-x: hidden;
        }

        /* Header & Navigation */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(248, 249, 255, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--border);
            padding: 1rem 2rem;
        }

        @media (prefers-color-scheme: dark) {
            header {
                background: rgba(15, 20, 25, 0.95);
            }
        }

        .header-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

		.logo { 
		display: flex; 
		align-items: center; 
		gap: 10px; 
		background: var(--secondary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;} 
		
		.logo img {
			height: 42px; 
			width: auto; 
			display: block; } 
			.logo span { 
			font-size: 24px; 
			font-weight: 700; 
			color: #333; }
		
        .nav-buttons {
            display: flex;
            gap: 1rem;
            align-items: center;
        }

        .btn {
            padding: 0.75rem 1.5rem;
            border: none;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            text-align: center;
        }

        .btn-primary {
            background: var(--secondary-gradient);
            color: white;
            box-shadow: 0 4px 15px rgba(245, 87, 108, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(245, 87, 108, 0.4);
        }

        .btn-white {
            background: white;
            color: #667eea;
            font-weight: 600;
        }

        .btn-white:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        /* Hero Section */
        .hero {
            margin-top: 80px;
            padding: 2rem;
            background: var(--light);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero-image {
            max-width: 100%;
            height: auto;
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            display: block;
            border-radius: 16px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
            animation: slideInDown 0.6s ease-out;
        }

        @keyframes slideInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Container */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        /* Section Titles */
        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 1rem;
            color: var(--text);
        }

        .section-subtitle {
            text-align: center;
            color: var(--text-light);
            font-size: 18px;
            margin-bottom: 3rem;
            max-width: 1000px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Gallery Section */
        .gallery {
            padding: 5rem 2rem;
            background: linear-gradient(180deg, rgba(102, 126, 234, 0.05) 0%, rgba(245, 87, 108, 0.05) 100%);
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 16px;
            box-shadow: var(--shadow-lg);
            transition: all 0.3s ease;
            cursor: pointer;
            height: 500px;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .gallery-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
        }

        .gallery-item:hover img {
            transform: scale(1.05);
        }

        .gallery-item-label {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
            color: white;
            padding: 2rem 1rem 1rem;
            font-size: 16px;
            font-weight: 600;
        }

        /* Features Section */
        .features {
            padding: 5rem 2rem;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }

        .feature-card {
            background: white;
            padding: 2rem;
            border-radius: 12px;
            border: 1px solid var(--border);
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        }

        @media (prefers-color-scheme: dark) {
            .feature-card {
                background: #1a1f36;
            }
        }

        .feature-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow);
            border-color: var(--accent);
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            background: var(--secondary-gradient);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 30px;
            margin-bottom: 1rem;
        }

        .feature-card h3 {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 0.75rem;
            color: var(--text);
        }

        .feature-card p {
            color: var(--text-light);
            line-height: 1.6;
        }

        /* VIP Section */
        .vip-section {
            padding: 5rem 2rem;
        }

        .vip-container {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            border-radius: 20px;
            padding: 4rem 2rem;
            text-align: center;
            box-shadow: var(--shadow-lg);
        }

        .vip-container h2 {
            font-size: 36px;
            margin-bottom: 1rem;
        }

        .vip-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin: 2rem 0;
            text-align: left;
        }

        .vip-feature {
            padding: 1.5rem;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .vip-feature h4 {
            font-size: 18px;
            margin-bottom: 0.5rem;
        }

        .vip-feature p {
            font-size: 14px;
            opacity: 0.9;
        }

        .vip-price {
            font-size: 28px;
            font-weight: 700;
            margin: 2rem 0;
        }

        /* Stats Section */
        .stats-section {
            padding: 4rem 2rem;
            background: var(--secondary-gradient);
            color: white;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .stat-item {
            padding: 1.5rem;
            text-align: center;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            font-size: 14px;
            opacity: 0.9;
        }

        /* How It Works Section */
        .how-it-works {
            padding: 5rem 2rem;
            background: var(--light);
        }

        .steps-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .step-card {
            background: white;
            padding: 2rem;
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
            border: 1px solid var(--border);
            transition: all 0.3s ease;
            position: relative;
        }

        @media (prefers-color-scheme: dark) {
            .step-card {
                background: #1a1f36;
            }
        }

        .step-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow);
        }

        .step-number {
            width: 60px;
            height: 60px;
            background: var(--secondary-gradient);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            font-weight: 700;
            margin: 0 auto 1rem;
        }

        .step-card h3 {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 0.75rem;
            color: var(--text);
        }

        .step-card p {
            color: var(--text-light);
            line-height: 1.6;
        }

        /* Testimonials Section */
        .testimonials {
            padding: 5rem 2rem;
            background: linear-gradient(180deg, rgba(102, 126, 234, 0.05) 0%, rgba(245, 87, 108, 0.05) 100%);
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .testimonial-card {
            background: white;
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
            border-top: 3px solid var(--accent);
            transition: all 0.3s ease;
        }

        @media (prefers-color-scheme: dark) {
            .testimonial-card {
                background: #1a1f36;
            }
        }

        .testimonial-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow);
        }

        .stars {
            color: #fbbf24;
            font-size: 18px;
            margin-bottom: 1rem;
        }

        .testimonial-text {
            color: var(--text-light);
            font-style: italic;
            margin-bottom: 1.5rem;
            line-height: 1.7;
        }

        .testimonial-author {
            font-weight: 600;
            color: var(--text);
            margin-bottom: 0.25rem;
        }

        .testimonial-title {
            font-size: 14px;
            color: var(--text-light);
        }

        /* Comparison Section */
        .comparison {
            padding: 5rem 2rem;
            background: var(--light);
        }

        .comparison-table {
            width: 100%;
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
            margin-top: 2rem;
        }

        @media (prefers-color-scheme: dark) {
            .comparison-table {
                background: #1a1f36;
            }
        }

        .comparison-table table {
            width: 100%;
            border-collapse: collapse;
        }

        .comparison-table th,
        .comparison-table td {
            padding: 1.5rem;
            text-align: left;
            border-bottom: 1px solid var(--border);
        }

        .comparison-table th {
            background: var(--primary-gradient);
            color: white;
            font-weight: 600;
        }

        .comparison-table tr:last-child td {
            border-bottom: none;
        }

        .feature-check {
            color: #10b981;
            font-weight: 700;
            font-size: 20px;
        }

        .feature-cross {
            color: #ef4444;
            font-weight: 700;
            font-size: 20px;
        }

        /* Download Section */
        .download-section {
            padding: 5rem 2rem;
            background: var(--light);
            text-align: center;
        }

        @media (prefers-color-scheme: dark) {
            .download-section {
                background: #0f1419;
            }
        }

        .download-section h2 {
            font-size: 36px;
            margin-bottom: 2rem;
        }

        .download-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 3rem;
        }

        .download-btn {
            padding: 1rem 2rem;
            border-radius: 10px;
            font-size: 16px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .download-btn.playstore {
            background: #000;
            color: white;
        }

        .download-btn.playstore:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        }

        .download-btn.apk {
            background: var(--secondary-gradient);
            color: white;
        }

        .download-btn.apk:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(245, 87, 108, 0.3);
        }

        /* FAQ Section */
        .faq-section {
            padding: 5rem 2rem;
            background: linear-gradient(180deg, rgba(102, 126, 234, 0.05) 0%, rgba(245, 87, 108, 0.05) 100%);
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background: white;
            margin-bottom: 1.5rem;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }

        @media (prefers-color-scheme: dark) {
            .faq-item {
                background: #1a1f36;
            }
        }

        .faq-question {
            padding: 1.5rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            user-select: none;
            transition: background 0.3s ease;
        }

        .faq-question:hover {
            background: var(--light);
        }

        @media (prefers-color-scheme: dark) {
            .faq-question:hover {
                background: #0f1419;
            }
        }

        .faq-question h4 {
            color: var(--text);
            font-weight: 600;
        }

        .faq-toggle {
            font-size: 20px;
            transition: transform 0.3s ease;
        }

        .faq-item.active .faq-toggle {
            transform: rotate(180deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
        }

        .faq-answer p {
            padding: 0 1.5rem 1.5rem;
            color: var(--text-light);
            line-height: 1.7;
        }

        /* Footer */
        footer {
            background: var(--text);
            color: white;
            padding: 3rem 2rem;
            margin-top: 3rem;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-section h4 {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 0.5rem;
        }

        .footer-section a {
            color: #9ca3af;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-section a:hover {
            color: var(--accent);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #2d3748;
            color: #9ca3af;
            font-size: 14px;
        }

        .fade-in {
            animation: fadeIn 0.6s ease-out forwards;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .gallery-item {
                height: 350px;
            }

            .section-title {
                font-size: 2rem;
            }

            .download-buttons {
                flex-direction: column;
            }

            .download-btn {
                width: 100%;
                justify-content: center;
            }
        }
    </style>