@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

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

        body {
            font-family: "Poppins", sans-serif;
            background: linear-gradient(135deg, #1a1a1a 0%, #090909 100%);
            color: #ffffff;
            min-height: 100vh;
            overflow-x: hidden;
        }



        /* Navbar dengan blur effect */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            height: 70px;
            background: rgba(0, 0, 0, 0.3);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 30px;
            z-index: 1000;
        }

        .store-logo {
            font-size: 22px;
            font-weight: 600;
                        background: linear-gradient(45deg, #ffffff, #868585);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.1;
            text-decoration: none;
            letter-spacing: -0.5px;
        }

        .menu-button {
            background: none;
            border: none;
            color: #ffffff;
            font-size: 24px;
            cursor: pointer;
            padding: 8px;
            border-radius: 8px;
            transition: all 0.3s ease;
            position: relative;
        }

        .menu-button:hover {
            background: #3534341a;
        }

        /* Dropdown Menu */
        .dropdown {
            position: absolute;
            top: 100%;
            right: 0;
            background: rgba(28, 28, 30, 0.95);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            padding: 12px 0;
            min-width: 200px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            margin-top: 8px;
        }

        .dropdown.active {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-item {
            display: block;
            padding: 12px 20px;
            color: #3083ef;
            text-decoration: none;
            font-size: 16px;
            transition: all 0.2s ease;
            border: none;
            background: none;
            width: 100%;
            text-align: left;
            cursor: pointer;
        }

        .dropdown-item:hover {
            background: rgba(255, 255, 255, 0.1);
        }

        /* Main Content */
        .main-content {
            margin-top: 70px;
            padding: 80px 30px;
            text-align: center;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-section {
            margin-bottom: 100px;
        }

        .hero-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            background: linear-gradient(45deg, #ffffff, #a0a0a0);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.1;
        }

        .hero-subtitle {
            font-size: 1.5rem;
            color: #a0a0a0;
            margin-bottom: 40px;
            font-weight: 300;
        }

        .cta-button {
            display: inline-block;
            background: linear-gradient(45deg, #007AFF, #0051D5);
            color: white;
            padding: 16px 32px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            font-size: 18px;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            box-shadow: 0 4px 20px rgba(0, 122, 255, 0.3);
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(0, 122, 255, 0.4);
        }

        /* Features Section */
        .features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 80px;
        }

        .feature-card {
            background: #6b6b6b31;
            /* backdrop-filter: blur(10px); */
            border: 1px solid rgba(255, 255, 255, 0.192);
            border-radius: 16px;
            padding: 40px 30px;
            text-align: center;
            transition: all 0.3s ease;
            cursor: pointer;
            text-decoration: none;
        }

        .feature-card:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.08);
        }

        .feature-icon {
            font-size: 3rem;
            margin-bottom: 20px;
        }

        .feature-icon img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            transition: transform 0.3s ease;
        }

        .feature-title {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: #ffffff;
        }

        .feature-description {
            color: #a0a0a0;
            line-height: 1.6;
        }


        /* Modal Popup */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 2000;
        }

        .modal-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .modal {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(28, 28, 30, 0.95);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px 20px 0 0;
            padding: 30px;
            max-height: 70vh;
            overflow-y: auto;
            transform: translateY(100%);
            transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        }

        .modal.active {
            transform: translateY(0);
        }

        .modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .modal-title {
            font-size: 1.8rem;
            font-weight: 600;
            color: #ffffff;
        }

        .modal-close {
            background: none;
            border: none;
            color: #a0a0a0;
            font-size: 24px;
            cursor: pointer;
            padding: 8px;
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .modal-close:hover {
            background: rgba(255, 255, 255, 0.1);
            color: #ffffff;
        }

        .modal-content {
            text-align: left;
        }

        .modal-icon {
            text-align: center;
            margin-bottom: 20px;
        }

        .modal-icon img {
            width: 80px;
            height: 80px;
            object-fit: contain;
        }

        .modal-description {
            color: #a0a0a0;
            line-height: 1.6;
            margin-bottom: 20px;
            font-size: 1.1rem;
        }

        .modal-features {
            margin-bottom: 25px;
        }

        .modal-features h4 {
            color: #ffffff;
            margin-bottom: 15px;
            font-size: 1.2rem;
        }

        .modal-features ul {
            list-style: none;
            padding: 0;
        }

        .modal-features li {
            color: #a0a0a0;
            margin-bottom: 8px;
            padding-left: 20px;
            position: relative;
        }

        .modal-features li:before {
            content: "-";
            position: absolute;
            left: 0;
            color: #007AFF;
            font-weight: bold;
        }

        .modal-actions {
            display: flex;
            gap: 15px;
            margin-top: 30px;
        }

        .btn-primary {
            flex: 1;
            background: linear-gradient(45deg, #007AFF, #0051D5);
            color: white;
            padding: 16px 24px;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            box-shadow: 0 4px 20px rgba(0, 122, 255, 0.3);
            text-align: center;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(0, 122, 255, 0.4);
        }

        .btn-secondary {
            flex: 1;
            background: rgba(255, 255, 255, 0.1);
            color: #ffffff;
            padding: 16px 24px;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            text-align: center;
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.2);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .navbar {
                padding: 0 20px;
            }
            
            .hero-title {
                font-size: 2.5rem;
            }
            
            .hero-subtitle {
                font-size: 1.2rem;
            }
            
            .main-content {
                padding: 60px 20px;
            }
            
            .features {
                grid-template-columns: 1fr;
            }

            .modal {
                padding: 25px 20px;
            }

            .modal-actions {
                flex-direction: column;
            }
        }

        /* Smooth scrolling */
        html {
            scroll-behavior: smooth;
        }

        /* Custom scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }

        ::-webkit-scrollbar-track {
            background: #1a1a1a;
        }

        ::-webkit-scrollbar-thumb {
            background: #555;
            border-radius: 4px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: #777;
        }
    /* slidedown */

        .container {
            /* max-width: 600px; */
            margin: 25px;
            padding: 20px 0;
        }
        
        .FAQ-TEXT {
            color: #3083ef;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .FAQ-title {
            font-size: 24px;
            font-weight: 600;
            color: #1d1d1f;
            text-align: start;
            margin-bottom: 20px;
            background: linear-gradient(45deg, #ffffff, #868585);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .slidedown-item {
            background: #6b6b6b31;
            border-radius: 16px;
            margin-bottom: 12px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        }

        .slidedown-item:hover {
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
            transform: translateY(-2px);
        }

        .slidedown-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 24px;
            cursor: pointer;
            user-select: none;
            position: relative;
            background: transparent;
            transition: all 0.3s ease;
        }

        .slidedown-header:active {
            transform: scale(0.98);
            background: rgba(0, 0, 0, 0.03);
        }

        .slidedown-title {
            font-size: 17px;
            font-weight: 600;
            color: #efeff2;
            letter-spacing: -0.2px;
        }

        .chevron {
            width: 24px;
            height: 24px;
            transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
            opacity: 0.6;
        }

        .chevron svg {
            width: 100%;
            height: 100%;
            fill: #dedee2;
        }

        .slidedown-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s cubic-bezier(0.25, 0.8, 0.25, 1),
                        padding 0.4s cubic-bezier(0.25, 0.8, 0.25, 1),
                        opacity 0.3s ease;
            opacity: 0;
            background: #6b6b6b31;
        }

        .slidedown-content-inner {
            padding: 0 24px 24px 24px;
            color: #b9b9bb;
            font-size: 15px;
            line-height: 1.6;
            font-weight: 400;
        }

        .slidedown-item.active .chevron {
            transform: rotate(90deg);
            opacity: 1;
        }

        .slidedown-item.active .slidedown-content {
            max-height: 500px;
            opacity: 1;
            padding-top: 8px;
        }

        .slidedown-item.active .slidedown-header {
            border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        }

        /* Animasi tambahan untuk smooth experience */
        .slidedown-item {
            animation: fadeInUp 0.6s ease forwards;
        }

        .slidedown-item:nth-child(1) { animation-delay: 0.1s; }
        .slidedown-item:nth-child(2) { animation-delay: 0.2s; }
        .slidedown-item:nth-child(3) { animation-delay: 0.3s; }
        .slidedown-item:nth-child(4) { animation-delay: 0.4s; }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive design */
        @media (max-width: 480px) {
            .container {
                padding: 10px 0;
            }
            
            .slidedown-header {
                padding: 16px 20px;
            }
            
            .slidedown-content-inner {
                padding: 0 20px 20px 20px;
            }
            
            .slidedown-title {
                font-size: 12px;
            }
        }

        footer {
            background: #090909;
            color: #a0a0a0;
            padding: 20px 30px;
            text-align: center;
            font-size: 14px;
            position: relative;
        }
        footer a {
            color: #3083ef;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        footer a:hover {
            color: #1a73e8;
        }

        .ios-footer {
            background-color: #1b1b1c;
            padding: 2rem 0;
            border-top: 1px solid rgba(0,0,0,0.1);
            margin-top: 3rem;
        }

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

        .footer-row {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-branding h3 {
                        font-size: 22px;
            font-weight: 600;
                        background: linear-gradient(45deg, #ffffff, #6f6f6f);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.1;
            margin: 0 0 0.5rem 0;
        }

        .footer-tagline {
            color: #e5e5e8;
            font-size: 0.9rem;
            margin: 0;
        }

        .footer-links {
            display: flex;
            gap: 3rem;
        }

        .footer-section h4 {
            font-size: 0.9rem;
            color: #b1b1b6;
            margin: 0 0 1rem 0;
            font-weight: 600;
        }

        .social-links {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .social-link {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: #515154;
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.2s ease;
            padding: 8px 0;
        }

        .social-link:hover {
            color: #0066cc;
        }

        .social-link i {
            font-size: 1.1rem;
            min-width: 20px;
            text-align: center;
        }

        .footer-bottom {
            padding-top: 1.5rem;
            border-top: 1px solid rgba(0,0,0,0.1);
            text-align: center;
        }

        .footer-bottom p {
            color: #86868b;
            font-size: 0.8rem;
            margin: 0;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .footer-row {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }

            .footer-links {
                flex-direction: column;
                align-items: center;
                gap: 2rem;
            }

            .social-links {
                align-items: center;
            }
        }