        :root {
            --bg-color: #080a0f;    
            --card-bg: #131722;     
            --card-hover: #1b2030;
            --text-main: #ffffff;   
            --text-sub: #94a3b8;    
            --primary: #45f3ff;     
            --primary-glow: rgba(69, 243, 255, 0.25);
            --border-color: rgba(69, 243, 255, 0.15);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Google Sans', -apple-system, sans-serif;
        }

        img.emoji {
            height: 1em;
            width: 1em;
            margin: 0 0.05em 0 0.1em;
            vertical-align: -0.1em;
            display: inline-block;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            background-color: var(--bg-color);
            background-image: 
                linear-gradient(rgba(69, 243, 255, 0.05) 1px, transparent 1px),
                linear-gradient(90deg, rgba(69, 243, 255, 0.05) 1px, transparent 1px),
                radial-gradient(circle at 50% 0%, rgba(69, 243, 255, 0.08) 0%, transparent 50%);
            background-size: 40px 40px, 40px 40px, cover;
            background-position: 0 0, 0 0, center top;
            animation: scrollGridDown 1.5s linear infinite;
            color: var(--text-main);
            padding: 40px 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
            min-height: 100vh;
            position: relative;
        }

        @keyframes scrollGridDown {
            0% {
                background-position: 0 0, 0 0, center top;
            }
            100% {
                background-position: 0 40px, 0 40px, center top;
            }
        }

        .top-bar {
            width: 100%;
            max-width: 1000px;
            display: flex;
            justify-content: space-between; 
            position: relative;
            margin-bottom: 30px;
            gap: 12px;
            align-items: center;
        }

        .menu-container, .cart-container {
            position: relative;
            display: inline-block;
        }

        .btn-gear, .btn-cart {
            background: rgba(19, 23, 34, 0.6);
            border: 2px solid var(--border-color);
            color: var(--primary); 
            font-size: 1.3rem;
            cursor: pointer;
            width: 45px;
            height: 45px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 12px;
            transition: all 0.3s ease;
            backdrop-filter: blur(8px);
            padding: 0;
        }

        .btn-gear:hover {
            border-color: var(--primary);
            background: var(--primary-glow);
            box-shadow: 0 0 15px var(--primary-glow);
        }

        .btn-gear {
            transition: all 0.3s ease, transform 0.35s cubic-bezier(0.34, 1.4, 0.64, 1);
        }

        .btn-gear.rotated {
            transform: rotate(135deg);
        }

        .btn-cart:hover {
            border-color: var(--primary);
            background: var(--primary-glow);
            box-shadow: 0 0 15px var(--primary-glow);
        }

        .cart-badge {
            position: absolute;
            top: -5px;
            right: -5px;
            background: #ff4a4a;
            color: white;
            font-size: 0.75rem;
            font-weight: bold;
            border-radius: 50%;
            width: 20px;
            height: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 2px 5px rgba(0,0,0,0.3);
            z-index: 10;
            transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .cart-badge.pop {
            transform: scale(1.35);
        }

        .btn-cart {
            transition: all 0.3s ease, transform 0.15s ease;
        }

        .btn-cart:active {
            transform: scale(0.9);
        }

        .spinning-emoji {
            display: inline-block;
            animation: spinSlow 20s linear infinite;
        }

        @keyframes spinSlow {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .loading-overlay {
            position: fixed;
            top: 0; left: 0;
            width: 100%; height: 100%;
            background: rgba(4, 5, 8, 0.55);
            backdrop-filter: blur(3px);
            z-index: 999999;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transition: opacity 0.25s ease, visibility 0.25s ease;
        }

        .loading-overlay.show {
            opacity: 1;
            visibility: visible;
        }

        .loading-emoji {
            font-size: 3.4rem;
            animation: loadingSpin 0.9s linear infinite;
            will-change: transform;
        }

        @keyframes loadingSpin {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .greeting-toast {
            position: fixed;
            top: 24px;
            left: 50%;
            transform: translateX(-50%) translateY(-30px);
            opacity: 0;
            pointer-events: none;
            background-color: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: 30px;
            padding: 12px 22px;
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--text-main);
            box-shadow: 0 10px 30px rgba(0,0,0,0.4), 0 0 20px rgba(69, 243, 255, 0.1);
            z-index: 100000;
            white-space: nowrap;
            transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.34, 1.4, 0.64, 1);
        }

        .greeting-toast.show {
            opacity: 1;
            transform: translateX(-50%) translateY(0);
        }

        @media (max-width: 480px) {
            .greeting-toast {
                white-space: normal;
                text-align: center;
                max-width: 88vw;
            }
        }

        #splashScreen {
            position: fixed;
            top: 0; left: 0;
            width: 100%; height: 100%;
            background-color: var(--bg-color);
            z-index: 99999;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            transition: opacity 0.7s ease, transform 0.7s ease;
            overflow: hidden;
        }

        #splashScreen.splash-hide {
            opacity: 0;
            transform: scale(1.06);
            pointer-events: none;
        }

        .splash-bg-emoji {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: clamp(220px, 65vw, 480px);
            line-height: 1;
            opacity: 0;
            z-index: 0;
            will-change: transform;
            animation: splashBgEmojiIn 1s ease forwards, splashSpin 7s linear infinite;
            animation-delay: 0s, 0s;
        }

        @keyframes splashBgEmojiIn {
            from { opacity: 0; }
            to { opacity: 0.16; }
        }

        @keyframes splashSpin {
            from { transform: translate(-50%, -50%) rotate(0deg); }
            to { transform: translate(-50%, -50%) rotate(360deg); }
        }

        .splash-title {
            font-size: 2.4rem;
            font-weight: 700;
            letter-spacing: -0.5px;
            color: var(--text-main);
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            position: relative;
            z-index: 1;
        }

        .splash-letter {
            display: inline-block;
            opacity: 0;
            transform: translateY(18px) scale(0.85);
            animation: splashLetterIn 0.5s cubic-bezier(0.34, 1.3, 0.64, 1) forwards;
            color: #ffffff;
            will-change: transform, opacity;
        }

        @keyframes splashLetterIn {
            from { opacity: 0; transform: translateY(18px) scale(0.85); }
            to { opacity: 1; transform: translateY(0) scale(1); }
        }

        .splash-underline {
            width: 0;
            height: 2px;
            margin-top: 4px;
            background: linear-gradient(to right, transparent, #45f3ff, transparent);
            box-shadow: 0 0 10px rgba(69, 243, 255, 0.7);
            animation: splashUnderlineIn 0.6s ease forwards;
            animation-delay: 1.05s;
            position: relative;
            z-index: 1;
        }

        @keyframes splashUnderlineIn {
            from { width: 0; }
            to { width: 220px; }
        }

        .splash-tagline {
            margin-top: 14px;
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 4px;
            color: var(--text-sub);
            opacity: 0;
            position: relative;
            z-index: 1;
            animation: splashTaglineIn 0.6s ease forwards;
            animation-delay: 1.3s;
        }

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

        .dropdown-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0; 
            background-color: var(--card-bg);
            border: 2px solid var(--border-color);
            border-radius: 16px;
            width: 310px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5), 0 0 20px rgba(69, 243, 255, 0.05);
            z-index: 100;
            padding: 20px;
            margin-top: 12px;
            max-height: 80vh;
            overflow-y: auto;
            opacity: 0;
            transform: translateY(-10px);
            transition: opacity 0.3s ease, transform 0.3s ease;
        }

        .dropdown-menu.show {
            display: block;
            opacity: 1;
            transform: translateY(0);
        }

        .dropdown-item-info {
            margin-bottom: 18px;
            padding-bottom: 14px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        }

        .dropdown-item-info:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }

        .dropdown-item-info h5 {
            color: var(--primary);
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 8px;
        }

        .dashboard-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .dashboard-list li a {
            color: var(--text-sub);
            text-decoration: none;
            font-size: 0.9rem;
            display: block;
            padding: 8px 12px;
            background: rgba(255, 255, 255, 0.02);
            border-radius: 8px;
            transition: all 0.2s ease;
        }

        .dashboard-list li a:hover {
            color: #0b0c10;
            font-weight: 500;
            background: var(--primary);
            padding-left: 16px;
        }

        .dropdown-links a {
            display: inline-block;
            color: var(--text-main);
            background: rgba(255, 255, 255, 0.02);
            padding: 8px 12px;
            border-radius: 8px;
            border: 1px solid rgba(255,255,255,0.05);
            width: 100%;
            text-decoration: none;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .dropdown-links a:hover {
            color: var(--primary);
            border-color: var(--primary);
            background: rgba(69, 243, 255, 0.05);
        }

        .modal-overlay {
            display: flex;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(4, 5, 8, 0.85);
            backdrop-filter: blur(6px);
            z-index: 1000;
            justify-content: center;
            align-items: center;
            padding: 20px;
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transition: opacity 0.28s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.28s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .modal-overlay.open {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
        }

        .modal-card {
            background-color: var(--card-bg);
            border: 2px solid var(--border-color);
            border-radius: 20px;
            width: 100%;
            max-width: 420px;
            padding: 28px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.6), 0 0 30px rgba(69, 243, 255, 0.1);
            position: relative;
            transform: scale(0.92) translateY(8px);
            opacity: 0;
            transition: transform 0.32s cubic-bezier(0.34, 1.4, 0.64, 1), opacity 0.28s ease;
        }

        .modal-overlay.open .modal-card {
            transform: scale(1) translateY(0);
            opacity: 1;
        }

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

        .modal-header h4 {
            color: var(--primary);
            font-size: 1.25rem;
            font-weight: 700;
        }

        .btn-close-modal {
            background: rgba(255,255,255,0.05);
            border: none;
            color: var(--text-sub);
            font-size: 1.2rem;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s;
        }

        .btn-close-modal:hover {
            background: #ff4a4a;
            color: white;
        }

        .qty-container {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            margin: 25px 0;
        }

        .btn-qty {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--border-color);
            color: var(--text-main);
            width: 40px;
            height: 40px;
            border-radius: 8px;
            font-size: 1.2rem;
            cursor: pointer;
            transition: all 0.2s;
        }

        .btn-qty:hover {
            background: var(--primary);
            color: #000;
        }

        .input-qty {
            width: 60px;
            height: 40px;
            background: rgba(0,0,0,0.3);
            border: 1px solid var(--border-color);
            color: #fff;
            text-align: center;
            font-size: 1.1rem;
            font-weight: bold;
            border-radius: 8px;
        }

        .cart-items-list {
            max-height: 250px;
            overflow-y: auto;
            margin-bottom: 20px;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .cart-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px;
            background: rgba(255,255,255,0.02);
            border: 1px solid rgba(255,255,255,0.05);
            border-radius: 12px;
        }

        .cart-item-info h5 {
            font-size: 0.95rem;
            color: var(--text-main);
            margin-bottom: 4px;
        }

        .cart-item-info p {
            font-size: 0.85rem;
            color: var(--primary);
        }

        .cart-item-actions {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .btn-delete-item {
            background: transparent;
            border: none;
            color: #ff4a4a;
            cursor: pointer;
            font-size: 1rem;
            padding: 5px;
        }

        .cart-total {
            display: flex;
            justify-content: space-between;
            font-weight: bold;
            font-size: 1.1rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 15px;
            margin-bottom: 20px;
        }

        .sosmed-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-top: 15px;
        }

        .btn-sosmed {
            width: 100%;
            padding: 14px;
            border-radius: 12px;
            border: 1px solid var(--border-color);
            background-color: rgba(255,255,255,0.02);
            color: #fff;
            text-decoration: none;
            font-weight: 500;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            font-size: 0.95rem;
            transition: all 0.2s ease;
        }

        .btn-sosmed:hover {
            background-color: rgba(69, 243, 255, 0.08);
            border-color: var(--primary);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(69, 243, 255, 0.1);
        }

        .header {
            text-align: center;
            margin-bottom: 50px;
            max-width: 650px;
            opacity: 0;
            animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) both;
            animation-delay: 5s;
        }

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

        .header h1 {
            font-size: 3rem;
            font-weight: 700;
            color: var(--text-main);
            margin-bottom: 14px;
            letter-spacing: -0.5px;
        }

        .header h1 span {
            color: var(--primary);
            background: linear-gradient(to right, #45f3ff, #00bfff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .header p {
            color: var(--text-sub);
            font-size: 1.1rem;
            line-height: 1.6;
        }

        .section-title {
            width: 100%;
            max-width: 1000px;
            color: var(--text-main);
            font-size: 1.4rem;
            font-weight: 700;
            margin: 50px 0 25px 0;
            padding-left: 14px;
            position: relative;
            scroll-margin-top: 30px;
        }

        .section-title::before {
            content: '';
            position: absolute;
            left: 0;
            top: 15%;
            height: 70%;
            width: 4px;
            background: var(--primary);
            border-radius: 4px;
            box-shadow: 0 0 10px var(--primary);
        }

        .pricing-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
            gap: 24px;
            width: 100%;
            max-width: 1000px;
            margin-bottom: 20px;
        }

        .card {
            background-color: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: 20px;
            padding: 35px 26px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), background-color 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), border-color 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) both;
        }

        .pricing-container .card:nth-child(1) { animation-delay: 5.05s; }
        .pricing-container .card:nth-child(2) { animation-delay: 5.12s; }
        .pricing-container .card:nth-child(3) { animation-delay: 5.19s; }
        .pricing-container .card:nth-child(4) { animation-delay: 5.26s; }

        .card:hover {
            transform: translateY(-6px);
            background-color: var(--card-hover);
            border-color: rgba(69, 243, 255, 0.4);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 25px rgba(69, 243, 255, 0.1);
        }

        .badge {
            position: absolute;
            top: 16px;
            right: 16px;
            background: linear-gradient(135deg, #45f3ff, #00a8ff);
            color: #040508;
            font-size: 0.7rem;
            font-weight: 700;
            padding: 5px 14px;
            border-radius: 30px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            box-shadow: 0 4px 10px rgba(69, 243, 255, 0.3);
        }

        .card-top h3 {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 12px;
            color: var(--text-main);
        }

        .price {
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--text-main);
            margin-bottom: 28px;
            display: flex;
            align-items: baseline;
            letter-spacing: -1px;
        }

        .price span {
            font-size: 0.95rem;
            color: var(--text-sub);
            font-weight: 400;
            margin-left: 6px;
            letter-spacing: 0;
        }

        .features-list {
            list-style: none;
            margin-bottom: 35px;
        }

        .features-list li {
            color: var(--text-sub);
            font-size: 0.95rem;
            margin-bottom: 14px;
            display: flex;
            align-items: flex-start;
            gap: 10px;
            line-height: 1.4;
        }

        .features-list li::before {
            content: "✓";
            color: var(--primary);
            font-weight: bold;
            font-size: 1rem;
        }

        .btn-order {
            width: 100%;
            background: linear-gradient(135deg, #45f3ff, #00bfff);
            color: #040508;
            border: none;
            padding: 15px;
            border-radius: 14px;
            font-size: 0.95rem;
            font-weight: 700;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            text-decoration: none;
            transition: all 0.2s ease;
            box-shadow: 0 4px 15px rgba(69, 243, 255, 0.2);
        }

        .btn-order:hover {
            opacity: 0.95;
            box-shadow: 0 6px 20px rgba(69, 243, 255, 0.4);
            transform: scale(1.01);
        }

        .btn-order:active {
            transform: scale(0.99);
        }

        .btn-order:disabled {
            opacity: 0.4;
            cursor: not-allowed;
            transform: none;
            box-shadow: none;
        }

        .btn-order-secondary {
            background: rgba(255,255,255,0.03);
            color: var(--text-main);
            border: 1px solid var(--border-color);
            box-shadow: none;
        }

        .btn-order-secondary:hover {
            box-shadow: none;
            background: rgba(255,255,255,0.06);
        }

        .script-grid {
            display: grid; 
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); 
            gap: 20px; 
            margin-bottom: 30px;
            border-top: 1px solid rgba(255,255,255,0.05);
            padding-top: 25px;
        }

        .script-grid-title {
            color: var(--primary); 
            display:block; 
            margin-bottom: 12px; 
            font-size: 0.95rem; 
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .faq-container {
            width: 100%;
            max-width: 1000px;
            display: flex;
            flex-direction: column;
            gap: 14px;
            margin-bottom: 20px;
        }

        .faq-item {
            background-color: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: 16px;
            padding: 4px 22px;
            transition: border-color 0.25s ease, background-color 0.25s ease;
        }

        .faq-item[open] {
            border-color: rgba(69, 243, 255, 0.4);
            background-color: var(--card-hover);
        }

        .faq-item summary {
            list-style: none;
            cursor: pointer;
            padding: 18px 0;
            font-weight: 600;
            font-size: 1rem;
            color: var(--text-main);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .faq-item summary::-webkit-details-marker {
            display: none;
        }

        .faq-item summary::after {
            content: '+';
            font-size: 1.4rem;
            color: var(--primary);
            transition: transform 0.3s ease;
            margin-left: 12px;
            flex-shrink: 0;
        }

        .faq-item[open] summary::after {
            transform: rotate(45deg);
        }

        .faq-item p {
            color: var(--text-sub);
            font-size: 0.92rem;
            line-height: 1.6;
            padding-bottom: 18px;
            margin: 0;
            animation: fadeInUp 0.3s ease both;
        }

        .whatsapp-fab {
            position: fixed;
            bottom: 90px;
            right: 22px;
            width: 58px;
            height: 58px;
            border-radius: 50%;
            background: #25D366;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 500;
            text-decoration: none;
            box-shadow: 0 4px 18px rgba(37, 211, 102, 0.45);
            animation: fabIn 0.5s cubic-bezier(0.34, 1.4, 0.64, 1) both;
            animation-delay: 5.4s;
            transition: transform 0.2s ease;
            will-change: transform;
        }

        .whatsapp-fab::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 50%;
            background: rgba(37, 211, 102, 0.55);
            animation: fabPulseRing 2.6s ease-out infinite;
            animation-delay: 5.4s;
            z-index: -1;
            will-change: transform, opacity;
        }

        .whatsapp-fab svg {
            width: 30px;
            height: 30px;
            fill: #ffffff;
        }

        .whatsapp-fab:hover {
            transform: scale(1.08);
        }

        .whatsapp-fab:active {
            transform: scale(0.92);
        }

        @keyframes fabPulseRing {
            0% { transform: scale(1); opacity: 0.55; }
            100% { transform: scale(1.7); opacity: 0; }
        }

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

        @media (max-width: 480px) {
            .whatsapp-fab {
                bottom: 80px;
                right: 16px;
                width: 52px;
                height: 52px;
            }
            .whatsapp-fab svg {
                width: 26px;
                height: 26px;
            }
        }

        .footer {
            text-align: center;
            color: var(--text-sub);
            font-size: 0.85rem;
            margin-top: 60px;
            width: 100%;
            max-width: 1000px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding-top: 25px;
        }

        .qris-box {
            display: flex;
            justify-content: center;
            margin-bottom: 18px;
        }

        .qris-canvas-wrap {
            background: #fff;
            padding: 14px;
            border-radius: 14px;
            line-height: 0;
        }

        .qris-amount-label {
            text-align: center;
            margin-bottom: 14px;
        }

        .qris-amount-label small {
            display: block;
            color: var(--text-sub);
            font-size: 0.85rem;
            margin-bottom: 4px;
        }

        .qris-amount-label strong {
            color: var(--primary);
            font-size: 1.6rem;
            font-weight: 700;
        }

        .qris-meta {
            text-align: center;
            margin-bottom: 18px;
            color: var(--text-sub);
            font-size: 0.85rem;
            line-height: 1.6;
        }

        .qris-timer {
            color: #ffb020;
            font-weight: 700;
        }

        .qris-status-box {
            text-align: center;
            padding: 12px;
            border-radius: 12px;
            background: rgba(255,255,255,0.03);
            border: 1px solid var(--border-color);
            color: var(--text-sub);
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }

        .qris-status-box.success {
            color: var(--primary);
            border-color: var(--primary);
            background: rgba(69, 243, 255, 0.06);
        }

        .qris-status-box.expired {
            color: #ff4a4a;
            border-color: rgba(255, 74, 74, 0.4);
            background: rgba(255, 74, 74, 0.06);
        }

        .qris-loading, .qris-error {
            text-align: center;
            padding: 30px 0;
            color: var(--text-sub);
        }

        .qris-error {
            color: #ff4a4a;
            font-size: 0.9rem;
            line-height: 1.6;
        }

        @media (max-width: 600px) {
            .header h1 { font-size: 2.2rem; }
            body { padding: 30px 15px; }
            .card { padding: 30px 20px; }
        }

/* ---- Nav cards (dashboard.html - navigasi ke /sewa /premium /script) ---- */
.nav-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    width: 100%;
    max-width: 1000px;
    margin-bottom: 20px;
}

.nav-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 30px 24px;
    text-decoration: none;
    color: var(--text-main);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.nav-cards .nav-card:nth-child(1) { animation-delay: 5.05s; }
.nav-cards .nav-card:nth-child(2) { animation-delay: 5.12s; }
.nav-cards .nav-card:nth-child(3) { animation-delay: 5.19s; }

.nav-card:hover {
    transform: translateY(-6px);
    background-color: var(--card-hover);
    border-color: rgba(69, 243, 255, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 25px rgba(69, 243, 255, 0.1);
}

.nav-card-icon {
    font-size: 2.4rem;
}

.nav-card-title {
    font-size: 1.15rem;
    font-weight: 700;
}

.nav-card-desc {
    font-size: 0.88rem;
    color: var(--text-sub);
    line-height: 1.5;
}
