/* ==========================================================================
   style.css - Compiled Tailwind CSS v4 & Custom Styles
   For transfercepat.com (100% Performance, 0 CLS, Beautiful Design)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. TAILWIND PREFLIGHT (RESET & BASE STYLES)
   -------------------------------------------------------------------------- */
*, ::before, ::after { box-sizing: border-box; border-width: 0; border-style: solid; border-color: rgba(255, 255, 255, 0.1); }
html { scroll-behavior: smooth; font-family: 'Plus Jakarta Sans', sans-serif; background-color: #020617; color: #f8fafc; line-height: 1.5; -webkit-text-size-adjust: 100%; -moz-tab-size: 4; tab-size: 4; }
body { margin: 0; line-height: inherit; overflow-x: hidden; }
img, svg, iframe { display: block; max-width: 100%; }
input, textarea, select, button { font-family: inherit; font-size: inherit; color: inherit; margin: 0; padding: 0; background: transparent; outline: none; }
a { color: inherit; text-decoration: inherit; }
h1, h2, h3, h4, h5, h6, p { margin: 0; }
ul { list-style: none; margin: 0; padding: 0; }

/* --------------------------------------------------------------------------
   2. LAYOUT & DISPLAY (FLEX, GRID, DISPLAY)
   -------------------------------------------------------------------------- */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.grid { display: grid; }
.inline-block { display: inline-block; }
.hidden { display: none; }
.block { display: block; }

/* Grid Columns */
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

/* Justify & Align */
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.justify-end { justify-content: flex-end; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.text-center { text-align: center; }
.text-justify { text-align: justify; }
.text-left { text-align: left; }
.flex-1 { flex: 1 1 0%; }
.shrink-0 { flex-shrink: 0; }

/* Responsive Media Queries (MD & LG) */
@media (min-width: 768px) {
    .md\:flex-row { flex-direction: row; }
    .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .md\:w-44 { width: 11rem; }
    .md\:text-6xl { font-size: 3.75rem; line-height: 1; }
    .md\:text-8xl { font-size: 6rem; line-height: 1; }
}

@media (min-width: 1024px) {
    .lg\:flex { display: flex; }
    .lg\:hidden { display: none; }
    .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .lg\:grid-cols-6 { grid-template-columns: repeat(6, minmax(0, 1fr)); }
    .lg\:col-span-1 { grid-column: span 1 / span 1; }
    .lg\:col-span-2 { grid-column: span 2 / span 2; }
}

/* --------------------------------------------------------------------------
   3. SPACING (MARGIN, PADDING, GAP, SPACE)
   -------------------------------------------------------------------------- */
.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.p-10 { padding: 2.5rem; }
.p-12 { padding: 3rem; }

.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }

.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
.py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }

.pt-2 { padding-top: 0.5rem; }
.pt-3 { padding-top: 0.75rem; }
.pt-4 { padding-top: 1rem; }
.pt-8 { padding-top: 2rem; }
.pt-10 { padding-top: 2.5rem; }
.pb-4 { padding-bottom: 1rem; }
.pb-6 { padding-bottom: 1.5rem; }
.pl-5 { padding-left: 1.25rem; }
.pl-6 { padding-left: 1.5rem; }
.pl-10 { padding-left: 2.5rem; }
.pr-2 { padding-right: 0.5rem; }
.pr-4 { padding-right: 1rem; }

.mt-0\.5 { margin-top: 0.125rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-16 { margin-top: 4rem; }
.mt-20 { margin-top: 5rem; }
.mt-24 { margin-top: 6rem; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.mb-20 { margin-bottom: 5rem; }
.mb-22 { margin-bottom: 5.5rem; }
.mb-24 { margin-bottom: 6rem; }
.mr-1 { margin-right: 0.25rem; }
.mr-2 { margin-right: 0.5rem; }

.gap-0\.5 { gap: 0.125rem; }
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-10 { gap: 2.5rem; }
.gap-16 { gap: 4rem; }

.space-x-8 > * + * { margin-left: 2rem; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-8 > * + * { margin-top: 2rem; }
.space-y-24 > * + * { margin-top: 6rem; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* --------------------------------------------------------------------------
   4. TYPOGRAPHY
   -------------------------------------------------------------------------- */
.text-\[8px\] { font-size: 8px; }
.text-\[9px\] { font-size: 9px; }
.text-\[10px\] { font-size: 10px; }
.text-\[11px\] { font-size: 11px; }
.text-xs { font-size: 0.75rem; line-height: 1.5; }
.text-sm { font-size: 0.875rem; line-height: 1.5; }
.text-base { font-size: 1rem; line-height: 1.5; }
.text-lg { font-size: 1.125rem; line-height: 1.75; }
.text-xl { font-size: 1.25rem; line-height: 1.75; }
.text-2xl { font-size: 1.5rem; line-height: 2; }
.text-3xl { font-size: 1.875rem; line-height: 2.25; }
.text-4xl { font-size: 2.25rem; line-height: 2.5; }
.text-5xl { font-size: 3rem; line-height: 1; }
.text-6xl { font-size: 3.75rem; line-height: 1; }

.font-bold { font-weight: 700; }
.font-black { font-weight: 900; }
.uppercase { text-transform: uppercase; }
.italic { font-style: italic; }
.underline { text-decoration-line: underline; }
.underline-offset-8 { text-underline-offset: 8px; }

.tracking-widest { letter-spacing: 0.1em; }
.tracking-wider { letter-spacing: 0.05em; }
.leading-none { line-height: 1; }
.leading-tight { line-height: 1.25; }
.leading-relaxed { line-height: 1.625; }
.leading-loose { line-height: 2; }
.line-clamp-2 { overflow: hidden; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }

/* --------------------------------------------------------------------------
   5. SIZING, ROUNDED, BORDERS
   -------------------------------------------------------------------------- */
.max-w-lg { max-width: 32rem; }
.max-w-7xl { max-width: 80rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-xl { max-width: 36rem; }
.max-w-md { max-width: 28rem; }
.max-w-none { max-width: none; }

.h-8 { height: 2rem; }
.w-8 { width: 2rem; }
.h-12 { height: 3rem; }
.w-12 { width: 3rem; }
.h-20 { height: 5rem; }
.h-32 { height: 8rem; }
.h-36 { height: 9rem; }
.h-40 { height: 10rem; }
.w-full { width: 100%; }
.h-full { height: 100%; }
.h-\[400px\] { height: 400px; }
.w-\[calc\(50\%-4px\)\] { width: calc(50% - 4px); }
.min-h-screen { min-height: 100vh; }
.max-h-\[90vh\] { max-height: 90vh; }
.max-h-\[75vh\] { max-height: 75vh; }
.max-h-\[650px\] { max-height: 650px; }
.aspect-video { aspect-ratio: 16 / 9; }
.shrink-0 { flex-shrink: 0; }

.rounded { border-radius: 0.25rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }
.rounded-full { border-radius: 9999px; }

.border { border-width: 1px; }
.border-2 { border-width: 2px; }
.border-b { border-bottom-width: 1px; }
.border-t { border-top-width: 1px; }
.border-l-4 { border-left-width: 4px; }
.border-l-8 { border-left-width: 8px; }
.border-none { border-style: none; }
.border-collapse { border-collapse: collapse; }

/* --------------------------------------------------------------------------
   6. COLORS & THEME SYSTEM
   -------------------------------------------------------------------------- */
.text-white { color: #ffffff; }
.text-black { color: #000000; }
.text-white\/50 { color: rgba(255, 255, 255, 0.5); }
.text-white\/80 { color: rgba(255, 255, 255, 0.8); }
.text-slate-200 { color: #e2e8f0; }
.text-slate-300 { color: #cbd5e1; }
.text-slate-400 { color: #94a3b8; }
.text-slate-500 { color: #64748b; }
.text-slate-600 { color: #475569; }
.text-blue-400 { color: #60a5fa; }
.text-blue-500 { color: #3b82f6; }
.text-blue-600 { color: #2563eb; }
.text-cyan-400 { color: #22d3ee; }
.text-red-400 { color: #f87171; }
.text-red-500 { color: #ef4444; }
.text-green-400 { color: #4ade80; }
.text-green-500 { color: #22c55e; }
.text-purple-400 { color: #c084fc; }
.text-purple-500 { color: #a855f7; }
.text-pink-400 { color: #f472b6; }
.text-pink-500 { color: #ec4899; }
.text-emerald-500 { color: #10b981; }
.text-emerald-400 { color: #34d399; }
.text-amber-400 { color: #fbbf24; }
.text-amber-500 { color: #f59e0b; }
.text-orange-400 { color: #fb923c; }
.text-orange-500 { color: #f97316; }
.text-orange-600 { color: #ea580c; }
.text-yellow-400 { color: #facc15; }
.text-yellow-500 { color: #eab308; }

.bg-white { background-color: #ffffff; }
.bg-black { background-color: #000000; }
.bg-slate-900 { background-color: #0f172a; }
.bg-slate-950 { background-color: #020617; }
.bg-blue-600 { background-color: #2563eb; }
.bg-green-500 { background-color: #22c55e; }
.bg-green-600 { background-color: #16a34a; }
.bg-red-500 { background-color: #ef4444; }
.bg-red-600 { background-color: #dc2626; }
.bg-orange-600 { background-color: #ea580c; }
.bg-purple-500 { background-color: #a855f7; }
.bg-pink-600 { background-color: #db2777; }

.bg-white\/5 { background-color: rgba(255, 255, 255, 0.05); }
.bg-white\/10 { background-color: rgba(255, 255, 255, 0.1); }
.bg-black\/40 { background-color: rgba(0, 0, 0, 0.4); }
.bg-black\/50 { background-color: rgba(0, 0, 0, 0.5); }
.bg-slate-900\/50 { background-color: rgba(15, 23, 42, 0.5); }
.bg-blue-500\/10 { background-color: rgba(59, 130, 246, 0.1); }
.bg-blue-600\/10 { background-color: rgba(37, 99, 235, 0.1); }
.bg-red-500\/5 { background-color: rgba(239, 68, 68, 0.05); }
.bg-red-500\/10 { background-color: rgba(239, 68, 68, 0.1); }
.bg-orange-500\/5 { background-color: rgba(249, 115, 22, 0.05); }
.bg-orange-500\/10 { background-color: rgba(249, 115, 22, 0.1); }
.bg-yellow-500\/10 { background-color: rgba(234, 179, 8, 0.1); }
.bg-purple-500\/5 { background-color: rgba(168, 85, 247, 0.05); }
.bg-pink-500\/5 { background-color: rgba(236, 72, 153, 0.05); }

/* BORDER COLORS */
.border-white\/5 { border-color: rgba(255, 255, 255, 0.05); }
.border-white\/10 { border-color: rgba(255, 255, 255, 0.1); }
.border-blue-500 { border-color: #3b82f6; }
.border-blue-500\/20 { border-color: rgba(59, 130, 246, 0.2); }
.border-blue-500\/50 { border-color: rgba(59, 130, 246, 0.5); }
.border-red-500 { border-color: #ef4444; }
.border-red-500\/20 { border-color: rgba(239, 68, 68, 0.2); }
.border-red-500\/30 { border-color: rgba(239, 68, 68, 0.3); }
.border-red-500\/50 { border-color: rgba(239, 68, 68, 0.5); }
.border-orange-500\/20 { border-color: rgba(249, 115, 22, 0.2); }
.border-orange-500\/30 { border-color: rgba(249, 115, 22, 0.3); }
.border-yellow-500\/20 { border-color: rgba(234, 179, 8, 0.2); }
.border-yellow-500\/30 { border-color: rgba(234, 179, 8, 0.3); }
.border-pink-500 { border-color: #ec4899; }
.border-pink-500\/10 { border-color: rgba(236, 72, 153, 0.1); }
.border-purple-500\/20 { border-color: rgba(168, 85, 247, 0.2); }
.border-emerald-500 { border-color: #10b981; }
.decoration-blue-500 { text-decoration-color: #3b82f6; }

/* GRADIENTS */
.bg-gradient-to-r { background-image: linear-gradient(to right, var(--tw-gradient-stops)); }
.bg-gradient-to-br { background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)); }
.bg-gradient-to-t { background-image: linear-gradient(to top, var(--tw-gradient-stops)); }
.from-blue-600 { --tw-gradient-from: #2563eb; --tw-gradient-to: rgba(37, 99, 235, 0); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.from-blue-900\/20 { --tw-gradient-from: rgba(30, 58, 138, 0.2); --tw-gradient-to: transparent; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.from-cyan-900\/20 { --tw-gradient-from: rgba(22, 78, 99, 0.2); --tw-gradient-to: transparent; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.from-black { --tw-gradient-from: #000; --tw-gradient-to: transparent; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.via-black\/20 { --tw-gradient-stops: var(--tw-gradient-from), rgba(0,0,0,0.2), var(--tw-gradient-to); }
.to-cyan-400 { --tw-gradient-to: #22d3ee; }
.to-transparent { --tw-gradient-to: transparent; }

/* --------------------------------------------------------------------------
   7. POSITION, SHADOWS & TRANSFORMS
   -------------------------------------------------------------------------- */
.sticky { position: sticky; }
.absolute { position: absolute; }
.relative { position: relative; }
.fixed { position: fixed; }
.top-0 { top: 0px; }
.inset-0 { top: 0px; right: 0px; bottom: 0px; left: 0px; }
.-inset-1 { top: -0.25rem; right: -0.25rem; bottom: -0.25rem; left: -0.25rem; }
.top-1\/2 { top: 50%; }
.left-4 { left: 1rem; }
.top-1 { top: 0.25rem; }
.bottom-1 { bottom: 0.25rem; }
.left-1 { left: 0.25rem; }
.z-\[100\] { z-index: 100; }
.z-10 { z-index: 10; }

.shadow-inner { box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1); }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); }
.shadow-blue-500\/20 { box-shadow: 0 10px 15px -3px rgba(59, 130, 246, 0.2); }
.shadow-blue-900\/40 { box-shadow: 0 10px 15px -3px rgba(30, 58, 138, 0.4); }
.shadow-red-900\/30 { box-shadow: 0 10px 15px -3px rgba(127, 29, 29, 0.3); }

.opacity-40 { opacity: 0.4; }
.opacity-50 { opacity: 0.5; }
.opacity-85 { opacity: 0.85; }
.blur { filter: blur(8px); }
.backdrop-blur-md { backdrop-filter: blur(12px); }
.grayscale { filter: grayscale(100%); }

.transition { transition-property: all; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-all { transition-property: all; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.duration-300 { transition-duration: 300ms; }
.duration-500 { transition-duration: 500ms; }
.duration-700 { transition-duration: 700ms; }
.duration-1000 { transition-duration: 1000ms; }

.-translate-y-1\/2 { transform: translateY(-50%); }
.object-cover { object-fit: cover; }
.overflow-hidden { overflow: hidden; }
.overflow-x-auto { overflow-x: auto; }
.overflow-y-auto { overflow-y: auto; }
.outline-none { outline: 2px solid transparent; outline-offset: 2px; }
.list-disc { list-style-type: disc; }
.line-clamp-2 { overflow: hidden; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }

/* --------------------------------------------------------------------------
   8. HOVER, FOCUS & SPECIAL STATES
   -------------------------------------------------------------------------- */
.hover\:bg-blue-500:hover { background-color: #3b82f6; }
.hover\:bg-blue-700:hover { background-color: #1d4ed8; }
.hover\:bg-blue-500\/15:hover { background-color: rgba(59, 130, 246, 0.15); }
.hover\:bg-green-500:hover { background-color: #22c55e; }
.hover\:bg-green-700:hover { background-color: #15803d; }
.hover\:bg-red-500:hover { background-color: #ef4444; }
.hover\:bg-pink-700:hover { background-color: #be185d; }
.hover\:bg-orange-700:hover { background-color: #c2410c; }

.hover\:text-white:hover { color: #ffffff; }
.hover\:text-blue-400:hover { color: #60a5fa; }
.hover\:text-green-400:hover { color: #4ade80; }
.hover\:text-red-400:hover { color: #f87171; }
.hover\:text-cyan-400:hover { color: #22d3ee; }
.hover\:text-purple-400:hover { color: #c084fc; }
.hover\:text-pink-400:hover { color: #f472b6; }
.hover\:text-emerald-400:hover { color: #34d399; }
.hover\:text-amber-400:hover { color: #fbbf24; }

.hover\:opacity-100:hover { opacity: 1; }
.hover\:grayscale-0:hover { filter: grayscale(0); }

.focus\:ring-2:focus { box-shadow: 0 0 0 2px var(--tw-ring-color); }
.focus\:ring-blue-500:focus { --tw-ring-color: #3b82f6; }
.focus\:ring-emerald-500:focus { --tw-ring-color: #10b981; }
.focus\:ring-white\/30:focus { --tw-ring-color: rgba(255, 255, 255, 0.3); }

.group:hover .group-hover\:scale-110 { transform: scale(1.1); }
.group:hover .group-hover\:opacity-100 { opacity: 1; }
.group:focus-within .group-focus-within\:text-blue-400 { color: #60a5fa; }
.group:focus-within .group-focus-within\:text-emerald-400 { color: #34d399; }

/* PROSE (Untuk Halaman Edukasi) */
.prose { color: #cbd5e1; max-width: 65ch; }
.prose p { margin-top: 1.25em; margin-bottom: 1.25em; }
.prose strong { color: #ffffff; font-weight: 600; }
.prose em { font-style: italic; }

/* --------------------------------------------------------------------------
   9. CUSTOM LAYOUTS & WEBSITE CLASSES
   -------------------------------------------------------------------------- */
.ai-bg { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; background: radial-gradient(circle at 50% 50%, #0f172a 0%, #020617 100%); }
.glass-card { background: rgba(255, 255, 255, 0.03); backdrop-filter: blur(20px); border-radius: 25px; border: 1px solid rgba(255,255,255,0.08); transition: 0.3s; }
.glass-card:hover { border: 1px solid var(--accent); transform: translateY(-3px); }
.page-section { display: none; opacity: 0; }
.page-active { display: block !important; animation: fadeInUp 0.5s forwards; }
.notif-float { position: fixed; bottom: 20px; left: 20px; z-index: 2000; background: white; color: #020617; padding: 12px 20px; border-radius: 15px; box-shadow: 0 10px 30px rgba(0,0,0,0.5); display: flex; align-items: center; gap: 12px; border-left: 5px solid #22c55e; pointer-events: none; }
input, select, textarea { background: rgba(255,255,255,0.05) !important; border: 1px solid rgba(255,255,255,0.1) !important; color: white !important; border-radius: 12px !important; }
.rainbow-text { animation: rainbow 3s linear infinite; background: linear-gradient(to right, #ff0000, #00f2ff, #8b5cf6, #ff0000); background-size: 200%; -webkit-background-clip: text; color: transparent; font-weight: 900; }
@keyframes rainbow { to { background-position: 200% center; } }
#infoModal { display: none; position: fixed; inset: 0; z-index: 3000; background: rgba(0,0,0,0.9); backdrop-filter: blur(10px); align-items: center; justify-content: center; padding: 20px; }
.cart-badge { background: #ef4444; color: white; font-size: 9px; padding: 1px 5px; border-radius: 50%; font-weight: 800; margin-left: 4px; }
.wa-floating-btn { position: fixed; bottom: 30px; right: 30px; z-index: 5000; width: 70px; height: 70px; border-radius: 50%; background: linear-gradient(45deg, #25d366, #00f2ff, #a855f7, #25d366); background-size: 300% 300%; animation: rainbow 4s ease infinite, pulseWA 2s infinite; display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 40px rgba(37, 211, 102, 0.6); cursor: pointer; transition: 0.4s; }
.wa-floating-btn:hover { transform: scale(1.1) rotate(15deg); }
.wa-floating-btn i { font-size: 38px; color: white; text-shadow: 0 2px 10px rgba(0,0,0,0.2); }
@keyframes pulseWA { 0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); } 70% { box-shadow: 0 0 0 25px rgba(37, 211, 102, 0); } 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); } }
.status-tag { background: rgba(0, 242, 255, 0.1); border: 1px solid var(--accent); padding: 2px 10px; border-radius: 50px; font-size: 8px; color: var(--accent); font-weight: 900; text-transform: uppercase; }
.pay-method-card { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05); padding: 12px; border-radius: 15px; transition: 0.3s; text-align: center; }
.pay-method-card:hover { background: rgba(255,255,255,0.08); border-color: var(--accent); transform: translateY(-3px); }
.pay-method-card i { font-size: 20px; margin-bottom: 8px; display: block; }
@keyframes neonGlowJual { 0%, 100% { box-shadow: 0 0 15px rgba(239, 68, 68, 0.4), inset 0 0 10px rgba(239, 68, 68, 0.2); border-color: rgba(239, 68, 68, 0.6); } 50% { box-shadow: 0 0 25px rgba(239, 68, 68, 0.7), inset 0 0 15px rgba(239, 68, 68, 0.4); border-color: rgba(239, 68, 68, 0.9); } }
@keyframes neonGlowBeli { 0%, 100% { box-shadow: 0 0 15px rgba(59, 130, 246, 0.4), inset 0 0 10px rgba(59, 130, 246, 0.2); border-color: rgba(59, 130, 246, 0.6); } 50% { box-shadow: 0 0 25px rgba(59, 130, 246, 0.7), inset 0 0 15px rgba(59, 130, 246, 0.4); border-color: rgba(59, 130, 246, 0.9); } }
.calc-glow-jual { animation: neonGlowJual 2.5s infinite ease-in-out; background: linear-gradient(135deg, rgba(20, 10, 15, 0.9) 0%, rgba(10, 5, 5, 0.95) 100%) !important; }
.calc-glow-beli { animation: neonGlowBeli 2.5s infinite ease-in-out; background: linear-gradient(135deg, rgba(10, 15, 30, 0.9) 0%, rgba(5, 5, 15, 0.95) 100%) !important; }
.cyber-pulse { position: relative; overflow: hidden; }
.cyber-pulse::after { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: linear-gradient(45deg, transparent, rgba(255,255,255,0.05), transparent); transform: rotate(45deg); transition: 0.5s; animation: cyberSweep 4s infinite linear; pointer-events: none; }
@keyframes cyberSweep { 0% { transform: translate(-30%, -30%) rotate(45deg); } 100% { transform: translate(30%, 30%) rotate(45deg); } }
#invoiceModal { display: none; position: fixed; inset: 0; z-index: 6000; background: rgba(0,0,0,0.95); backdrop-filter: blur(15px); align-items: center; justify-content: center; padding: 20px; }
.invoice-modal-active { display: flex !important; animation: fadeIn 0.3s forwards; }
.phone-container { width: 100%; max-width: 412px; background-color: #060913; border-radius: 30px; overflow: hidden; box-shadow: 0 20px 40px rgba(0,0,0,0.8); border: 1px solid #1e293b; padding: 24px; display: flex; flex-direction: column; align-items: center; }
.success-icon-wrapper { margin-top: 15px; margin-bottom: 12px; width: 65px; height: 65px; background-color: rgba(16, 185, 129, 0.1); border-radius: 50%; display: flex; justify-content: center; align-items: center; border: 2px solid #10b981; }
.success-icon { color: #10b981; font-size: 30px; font-weight: bold; }
.status-badge { background-color: rgba(16, 185, 129, 0.15); color: #10b981; font-size: 11px; font-weight: 700; padding: 6px 16px; border-radius: 20px; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 24px; border: 1px solid rgba(16, 185, 129, 0.25); }
.invoice-title { font-size: 21px; font-weight: 900; font-style: italic; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 22px; text-align: center; color: #ffffff; }
.invoice-card { width: 100%; background-color: #111827; border: 1px solid #1f2937; border-radius: 20px; padding: 20px; margin-bottom: 24px; }
.invoice-header-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; border-bottom: 1px dashed #374151; padding-bottom: 14px; }
.id-label { font-size: 11px; color: #9ca3af; font-weight: 600; text-transform: uppercase; }
.id-value { font-size: 14px; color: #3b82f6; font-weight: 700; letter-spacing: 0.5px; }
.invoice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 16px; margin-bottom: 24px; }
.grid-item { display: flex; flex-direction: column; }
.item-label { font-size: 10px; color: #9ca3af; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 6px; }
.item-value { font-size: 14px; font-weight: 700; color: #ffffff; }
.item-value.highlight-red { color: #ef4444; font-size: 18px; }
.item-value.highlight-green { color: #10b981; font-size: 18px; }
.status-dot-wrapper { display: flex; align-items: center; gap: 6px; color: #10b981; font-size: 13px; font-weight: 700; }
.status-dot { width: 8px; height: 8px; background-color: #10b981; border-radius: 50%; }
.barcode-container { display: flex; flex-direction: column; align-items: center; justify-content: center; padding-top: 10px; }
.barcode-lines { width: 100%; max-width: 185px; height: 40px; background: repeating-linear-gradient(90deg, #4b5563, #4b5563 2px, transparent 2px, transparent 4px, #374151 4px, #374151 8px, transparent 8px, transparent 10px); opacity: 0.6; margin-bottom: 6px; }
.barcode-text { font-size: 10px; color: #9ca3af; letter-spacing: 2px; }
.target-section { width: 100%; margin-bottom: 22px; }
.target-label { font-size: 11px; color: #9ca3af; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 8px; display: block; }
.target-input { width: 100%; background-color: #0b111e; border: 1px solid #1f2937; border-radius: 12px; padding: 14px 16px; color: #ffffff; font-size: 13px; outline: none; }
.btn-primary-wa { width: 100%; background-color: #10b981; color: #ffffff; border: none; border-radius: 14px; padding: 16px; font-size: 13px; font-weight: 700; cursor: pointer; display: flex; justify-content: center; align-items: center; gap: 8px; margin-bottom: 12px; transition: background 0.2s; }
.btn-primary-wa:hover { background-color: #059669; transform: scale(1.02); }
.btn-secondary-close { width: 100%; background: transparent; color: #9ca3af; border: none; padding: 12px; font-size: 13px; font-weight: 600; cursor: pointer; text-transform: uppercase; letter-spacing: 0.5px; transition: color 0.2s; }
.btn-secondary-close:hover { color: #ffffff; }
.phone-icon { width: 16px; height: 16px; fill: currentColor; }
</style>
Gini?
Dihalaman css saya cma nulis link css tadi kan gak ada kodenya?