@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0&display=swap');

/* ==========================================================================
   Base Reset & Floating Glassmorphism Design Tokens
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    /* Color Palette */
    --primary: #4f46e5;
    --primary-hover: #4338ca;
    --primary-light: #e0e7ff;
    
    --accent-pink: #ec4899;
    --accent-purple: #8b5cf6;
    --accent-cyan: #06b6d4;
    --accent-amber: #f59e0b;
    --accent-emerald: #10b981;
    --accent-yellow: #fde047;

    --text-main: #0f172a;
    --text-muted: #475569;
    --text-dim: #94a3b8;
    
    --bg-mesh: radial-gradient(at 8% 12%, rgba(165, 243, 252, 0.50) 0px, transparent 50%),
               radial-gradient(at 92% 10%, rgba(244, 114, 182, 0.45) 0px, transparent 50%),
               radial-gradient(at 50% 45%, rgba(192, 132, 252, 0.30) 0px, transparent 50%),
               radial-gradient(at 88% 85%, rgba(251, 146, 60, 0.30) 0px, transparent 50%),
               radial-gradient(at 12% 88%, rgba(129, 140, 248, 0.40) 0px, transparent 50%),
               #faf8ff;

    /* Floating Glass Surfaces */
    --glass-bg: rgba(255, 255, 255, 0.78);
    --glass-bg-hover: rgba(255, 255, 255, 0.92);
    --glass-blur: 24px;
    --glass-border: rgba(255, 255, 255, 0.90);
    --glass-border-subtle: rgba(255, 255, 255, 0.60);
    
    /* Floating 3D Shadows */
    --floating-shadow: 0 20px 45px -15px rgba(31, 38, 135, 0.08), 0 8px 20px -6px rgba(0, 0, 0, 0.03), 0 0 0 1.5px rgba(255, 255, 255, 0.95);
    --floating-shadow-hover: 0 30px 60px -15px rgba(31, 38, 135, 0.14), 0 12px 28px -6px rgba(0, 0, 0, 0.05), 0 0 0 1.5px #ffffff;

    --font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

body {
    font-family: var(--font-family);
    background: var(--bg-mesh);
    background-attachment: fixed;
    color: var(--text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
}

/* Material Symbols */
.material-symbols-outlined {
    font-family: 'Material Symbols Outlined';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
}

/* ==========================================================================
   Floating Glassmorphism Utility Classes
   ========================================================================== */
.glass-bg, .neo-glass-bg {
    background: var(--bg-mesh) !important;
    background-attachment: fixed !important;
}

/* Floating Glass Cards */
.floating-card, .neo-card, .neo-glass-card, .glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur)) saturate(190%);
    -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(190%);
    border: 1.5px solid var(--glass-border);
    box-shadow: var(--floating-shadow);
    border-radius: 2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.floating-card:hover, .neo-card-hover:hover, .glass-card-hover:hover {
    transform: translateY(-6px);
    background: var(--glass-bg-hover);
    box-shadow: var(--floating-shadow-hover);
    border-color: #ffffff;
}

/* Floating Pills & Badges */
.floating-pill, .neo-pill, .glass-pill {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1.5px solid rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 15px rgba(31, 38, 135, 0.05), 0 1px 3px rgba(0, 0, 0, 0.02);
    border-radius: 9999px;
    font-weight: 800;
}

.neo-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 1rem;
    border-radius: 9999px;
    border: 1.5px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 12px rgba(31, 38, 135, 0.05);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Floating Inputs */
.neo-input, .glass-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1.5px solid rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 14px rgba(31, 38, 135, 0.04);
    border-radius: 1.125rem;
    padding: 0.875rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-main);
    transition: all 0.2s ease;
    font-family: inherit;
}

.neo-input:focus, .glass-input:focus {
    outline: none;
    background: #ffffff;
    border-color: var(--accent-purple);
    box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.20), 0 8px 20px rgba(31, 38, 135, 0.08);
    transform: translateY(-1px);
}

/* ==========================================================================
   Spacious Floating 3D Icon Badges (With Flat Icons inside)
   ========================================================================== */
.floating-icon-box, .neo-icon-box, .icon-squircle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 25px -5px rgba(31, 38, 135, 0.08), 0 4px 10px -2px rgba(0, 0, 0, 0.03);
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.floating-icon-box:hover, .neo-icon-box:hover, .icon-squircle:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 16px 32px -6px rgba(31, 38, 135, 0.15);
}

.icon-squircle-pink, .neo-icon-pink {
    background: linear-gradient(135deg, #fce7f3, #fbcfe8);
    color: #db2777;
    box-shadow: 0 10px 20px -3px rgba(219, 39, 119, 0.20);
}

.icon-squircle-purple, .neo-icon-purple {
    background: linear-gradient(135deg, #ede9fe, #ddd6fe);
    color: #7c3aed;
    box-shadow: 0 10px 20px -3px rgba(124, 58, 237, 0.20);
}

.icon-squircle-blue, .neo-icon-blue {
    background: linear-gradient(135deg, #e0f2fe, #bae6fd);
    color: #0284c7;
    box-shadow: 0 10px 20px -3px rgba(2, 132, 199, 0.20);
}

.icon-squircle-emerald, .neo-icon-emerald {
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);
    color: #059669;
    box-shadow: 0 10px 20px -3px rgba(5, 150, 105, 0.20);
}

.icon-squircle-amber, .neo-icon-amber {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    color: #d97706;
    box-shadow: 0 10px 20px -3px rgba(217, 119, 6, 0.20);
}

.neo-icon-yellow {
    background: linear-gradient(135deg, #fefce8, #fef08a);
    color: #ca8a04;
}

/* ==========================================================================
   Dedicated Step Cards & CTA Banner (Floating 3D & Spacious)
   ========================================================================== */
.step-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1.5px solid rgba(255, 255, 255, 0.95);
    border-radius: 1.75rem;
    padding: 2rem 1.75rem;
    box-shadow: 0 20px 40px -15px rgba(31, 38, 135, 0.07), 0 0 0 1px rgba(255, 255, 255, 0.8);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    min-height: 240px;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.step-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 28px 55px -12px rgba(31, 38, 135, 0.14), 0 0 0 2px #ffffff;
    background: #ffffff;
}

.step-icon-box {
    width: 4.25rem; /* 68px */
    height: 4.25rem;
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.95);
    margin-bottom: 1.5rem;
    flex-shrink: 0;
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.step-card:hover .step-icon-box {
    transform: scale(1.12) rotate(4deg);
}

.step-icon-box .material-symbols-outlined {
    font-size: 2.125rem !important; /* 34px */
}

.step-icon-blue {
    background: linear-gradient(135deg, #e0f2fe, #bae6fd);
    color: #0284c7;
    box-shadow: 0 10px 22px -3px rgba(2, 132, 199, 0.25);
}

.step-icon-purple {
    background: linear-gradient(135deg, #ede9fe, #ddd6fe);
    color: #7c3aed;
    box-shadow: 0 10px 22px -3px rgba(124, 58, 237, 0.25);
}

.step-icon-pink {
    background: linear-gradient(135deg, #fce7f3, #fbcfe8);
    color: #db2777;
    box-shadow: 0 10px 22px -3px rgba(219, 39, 119, 0.25);
}

.step-icon-emerald {
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);
    color: #059669;
    box-shadow: 0 10px 22px -3px rgba(5, 150, 105, 0.25);
}

.step-badge {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    margin-bottom: 0.625rem;
    box-shadow: 0 2px 6px rgba(0,0,0,0.03);
}

.step-badge-blue { background: #e0f2fe; color: #0369a1; border: 1px solid #bae6fd; }
.step-badge-purple { background: #ede9fe; color: #6d28d9; border: 1px solid #ddd6fe; }
.step-badge-pink { background: #fce7f3; color: #be185d; border: 1px solid #fbcfe8; }
.step-badge-emerald { background: #d1fae5; color: #047857; border: 1px solid #a7f3d0; }

/* Large CTA Banner Icon */
.cta-banner-icon {
    width: 5.5rem; /* 88px */
    height: 5.5rem;
    border-radius: 1.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ede9fe, #ddd6fe);
    color: #7c3aed;
    border: 2.5px solid rgba(255, 255, 255, 0.95);
    box-shadow: 0 16px 36px -5px rgba(124, 58, 237, 0.28);
    margin: 0 auto 1.5rem auto;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cta-banner-icon:hover {
    transform: scale(1.12) rotate(-6deg);
}

.cta-banner-icon .material-symbols-outlined {
    font-size: 2.75rem !important; /* 44px */
}

/* ==========================================================================
   Floating Tactile Buttons
   ========================================================================== */
.btn, .neo-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    font-weight: 800;
    border-radius: 9999px;
    padding: 0.875rem 1.75rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
    border: 1.5px solid transparent;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    text-decoration: none;
    user-select: none;
    white-space: nowrap;
}

.btn:hover:not(:disabled), .neo-btn:hover:not(:disabled) {
    transform: translateY(-3px);
}

.btn:active:not(:disabled), .neo-btn:active:not(:disabled) {
    transform: translateY(1px) scale(0.98);
}

.btn:disabled, .neo-btn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
    transform: none;
}

/* Solid Primary Button */
.btn-gradient, .btn-primary, .neo-btn-primary {
    background: #4f46e5;
    color: #ffffff !important;
    border: none;
    box-shadow: 0 4px 14px -2px rgba(79, 70, 229, 0.4);
}

.btn-gradient:hover:not(:disabled), .btn-primary:hover:not(:disabled), .neo-btn-primary:hover:not(:disabled) {
    background: #4338ca;
    box-shadow: 0 6px 18px -2px rgba(79, 70, 229, 0.5);
}

/* Secondary Solid Light Button */
.btn-secondary, .btn-glass, .neo-btn-secondary {
    background: #f1f5f9;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: 1px solid #e2e8f0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    color: var(--text-main);
}

.btn-secondary:hover:not(:disabled), .btn-glass:hover:not(:disabled), .neo-btn-secondary:hover:not(:disabled) {
    background: #e2e8f0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.btn-yellow, .neo-btn-yellow {
    background: #eab308;
    color: #ffffff !important;
    border: none;
    box-shadow: 0 4px 14px -2px rgba(234, 179, 8, 0.4);
}

.btn-danger {
    background: #ef4444;
    color: #ffffff !important;
    border: none;
    box-shadow: 0 4px 14px -2px rgba(239, 68, 68, 0.4);
}

.btn-success {
    background: #22c55e;
    color: #ffffff !important;
    border: none;
    box-shadow: 0 4px 14px -2px rgba(34, 197, 94, 0.4);
}



/* ==========================================================================
   Layout Utilities & Responsive Containers
   ========================================================================== */
.container {
    width: 100%;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}

.flex { display: flex; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }
.hidden { display: none !important; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.items-end { align-items: flex-end; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.justify-end { justify-content: flex-end; }
.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-12 { gap: 3rem; }
.shrink-0 { flex-shrink: 0; }
.grow { flex-grow: 1; }

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

@media (min-width: 640px) {
    .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .sm\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .sm\:flex-row { flex-direction: row; }
}

@media (min-width: 768px) {
    .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\:flex { display: flex; }
    .md\:flex-row { flex-direction: row; }
    .md\:p-12 { padding: 3rem; }
    .md\:p-16 { padding: 4rem; }
    .md\:py-24 { padding-top: 6rem; padding-bottom: 6rem; }
    .md\:text-5xl { font-size: 3rem; line-height: 1.1; }
    .md\:text-lg { font-size: 1.125rem; line-height: 1.75rem; }
}

@media (min-width: 1024px) {
    .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

/* Sizing & Spacing */
.w-full { width: 100%; }
.h-full { height: 100%; }
.min-h-screen { min-height: 100vh; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.py-1\.5 { padding-top: 0.375rem; padding-bottom: 0.375rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-2\.5 { padding-top: 0.625rem; padding-bottom: 0.625rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-3\.5 { padding-top: 0.875rem; padding-bottom: 0.875rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-3\.5 { padding-left: 0.875rem; padding-right: 0.875rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-4\.5 { padding-left: 1.125rem; padding-right: 1.125rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.mb-0\.5 { margin-bottom: 0.125rem; }
.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-20 { margin-bottom: 5rem; }
.mb-24 { margin-bottom: 6rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.mt-24 { margin-top: 6rem; }
.mx-auto { margin-left: auto; margin-right: auto; }

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

.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.uppercase { text-transform: uppercase; }
.tracking-tight { letter-spacing: -0.025em; }
.tracking-wider { letter-spacing: 0.05em; }
.leading-tight { line-height: 1.25; }
.leading-relaxed { line-height: 1.625; }
.no-underline { text-decoration: none; }

/* Colors */
.text-slate-900 { color: #0f172a; }
.text-slate-800 { color: #1e293b; }
.text-slate-700 { color: #334155; }
.text-slate-600 { color: #475569; }
.text-slate-500 { color: #64748b; }
.text-slate-400 { color: #94a3b8; }
.text-white { color: #ffffff; }
.text-indigo-600 { color: #4f46e5; }
.text-indigo-700 { color: #4338ca; }
.text-purple-600 { color: #7c3aed; }
.text-pink-600 { color: #db2777; }
.text-emerald-600 { color: #059669; }
.text-emerald-700 { color: #047857; }
.text-amber-600 { color: #d97706; }
.text-amber-700 { color: #b45309; }

/* Gradient text accent */
.text-gradient {
    background: linear-gradient(135deg, #ec4899 0%, #8b5cf6 50%, #4f46e5 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.text-gradient-blue {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Border radius */
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }
.rounded-\[28px\] { border-radius: 28px; }
.rounded-\[32px\] { border-radius: 32px; }
.rounded-full { border-radius: 9999px; }

/* Shadows */
.shadow-xs { box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04); }
.shadow-sm { box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05); }
.shadow-md { box-shadow: 0 6px 16px rgba(31, 38, 135, 0.08); }
.shadow-lg { box-shadow: 0 12px 28px rgba(31, 38, 135, 0.10); }
.shadow-xl { box-shadow: 0 20px 40px rgba(31, 38, 135, 0.12); }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgba(31, 38, 135, 0.18); }

/* Position */
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.top-0 { top: 0; }
.right-0 { right: 0; }
.bottom-0 { bottom: 0; }
.left-0 { left: 0; }
.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.z-50 { z-index: 50; }
.z-100 { z-index: 100; }
.overflow-hidden { overflow: hidden; }
.pointer-events-none { pointer-events: none; }
.-translate-y-1\/2 { transform: translateY(-50%); }

/* Blur filters */
.blur-3xl { filter: blur(64px); }
.backdrop-blur-md { backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
.backdrop-blur-xl { backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); }
.backdrop-blur-2xl { backdrop-filter: blur(32px); -webkit-backdrop-filter: blur(32px); }

/* ==========================================================================
   Public Paslon Cards (Floating Glassmorphism)
   ========================================================================== */
.paslon-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.5rem;
}

.paslon-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 360px;
    padding: 2.5rem 2rem 2rem;
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur)) saturate(190%);
    -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(190%);
    border: 1.5px solid var(--glass-border);
    border-radius: 2rem;
    box-shadow: var(--floating-shadow);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.paslon-card:hover {
    transform: translateY(-8px);
    background: var(--glass-bg-hover);
    box-shadow: var(--floating-shadow-hover);
    border-color: #ffffff;
}

.paslon-nomor {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    width: 3rem;
    height: 3rem;
    border-radius: 1.125rem;
    background: #4f46e5;
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 4px 12px -2px rgba(79, 70, 229, 0.4);
}

.paslon-photo {
    width: 9.5rem;
    height: 9.5rem;
    border-radius: 2.25rem;
    overflow: hidden;
    border: 3px solid #ffffff;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    margin: 1.5rem 0 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 24px -4px rgba(31, 38, 135, 0.08);
    transition: transform 0.3s ease;
}

.paslon-card:hover .paslon-photo {
    transform: scale(1.04);
}

.paslon-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.paslon-photo-fallback {
    font-size: 4.5rem;
    color: #94a3b8;
}

.paslon-name {
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--text-main);
    letter-spacing: -0.02em;
    margin-bottom: 0.25rem;
}

.paslon-role {
    font-size: 0.75rem;
    font-weight: 800;
    color: #7c3aed;
    background: rgba(139, 92, 246, 0.12);
    padding: 0.35rem 0.9rem;
    border-radius: 9999px;
    margin-bottom: 1.25rem;
    border: 1px solid rgba(139, 92, 246, 0.25);
}

.paslon-role-solo {
    color: #475569;
    background: rgba(100, 116, 139, 0.1);
    border-color: rgba(100, 116, 139, 0.2);
}

.paslon-details {
    width: 100%;
    margin-top: auto;
    text-align: left;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 12px rgba(31, 38, 135, 0.04);
    border-radius: 1.25rem;
    overflow: hidden;
}

.paslon-details summary {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    cursor: pointer;
    user-select: none;
    padding: 0.875rem 1.125rem;
    font-size: 0.75rem;
    font-weight: 800;
    color: #1e293b;
    transition: background 0.15s ease;
}

.paslon-details summary:hover {
    background: #ffffff;
}

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

.paslon-details-icon {
    font-size: 1.25rem;
    color: #64748b;
    transition: transform 0.2s ease;
}

.paslon-details[open] .paslon-details-icon {
    transform: rotate(180deg);
}

.paslon-details-body {
    padding: 0.75rem 1.125rem 1.125rem;
    border-top: 1px solid rgba(226, 232, 240, 0.8);
    font-size: 0.75rem;
    color: #475569;
    line-height: 1.65;
}

.paslon-details-body p + p {
    margin-top: 0.35rem;
}

.paslon-details-body strong {
    display: block;
    color: var(--text-main);
    font-weight: 800;
    margin-top: 0.75rem;
    margin-bottom: 0.15rem;
}

.paslon-preline {
    white-space: pre-line;
}

.paslon-no-profile {
    margin-top: auto;
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 600;
}

.paslon-empty {
    max-width: 40rem;
    margin: 0 auto;
    text-align: center;
    padding: 4rem 2rem;
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    border: 2px dashed rgba(148, 163, 184, 0.4);
    border-radius: 2rem;
    box-shadow: var(--floating-shadow);
}

.paslon-empty-icon {
    width: 5rem;
    height: 5rem;
    margin: 0 auto 1.5rem;
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f3ff, #ddd6fe);
    border: 2px solid rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 25px -5px rgba(124, 58, 237, 0.2);
    color: #7c3aed;
}

.paslon-empty-title {
    font-size: 1.35rem;
    font-weight: 900;
    color: var(--text-main);
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}

.paslon-empty-text {
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.65;
    max-width: 28rem;
    margin: 0 auto;
    font-weight: 500;
}

/* ==========================================================================
   Candidate Voting Ballot Cards (Floating Host Kiosk)
   ========================================================================== */
.candidate-vote-card {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur)) saturate(190%);
    -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(190%);
    border: 1.5px solid var(--glass-border);
    border-radius: 2rem;
    padding: 1.75rem;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    user-select: none;
    text-align: left;
    box-shadow: var(--floating-shadow);
}

.candidate-vote-card:hover, .candidate-vote-card:focus {
    transform: translateY(-6px);
    background: #ffffff;
    box-shadow: var(--floating-shadow-hover);
    outline: none;
}

.candidate-vote-card.selected {
    border-color: #ec4899;
    background: #ffffff;
    box-shadow: 0 20px 45px -10px rgba(236, 72, 153, 0.30), 0 0 0 3px rgba(236, 72, 153, 0.40);
    transform: translateY(-6px) scale(1.02);
}

.candidate-vote-card.selected {
    border-color: #10b981;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.25), 0 20px 40px rgba(16, 185, 129, 0.15);
    transform: translateY(-4px) scale(1.02);
}

/* ==========================================================================
   Host Booth Monitoring Cards (Operator) — Solid style matching admin
   ========================================================================== */
.host-card {
    background: #ffffff;
    border: 1px solid rgba(226, 225, 237, 0.7);
    border-radius: 1.25rem;
    padding: 1.25rem;
    position: relative;
    overflow: hidden;
    transition: all 0.25s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
}

.host-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.host-card.status-idle {
    border-color: rgba(226, 225, 237, 0.7);
}

@keyframes pulse-pending {
    0%, 100% {
        border-color: #f59e0b;
        box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.4);
    }
    50% {
        border-color: #fbbf24;
        box-shadow: 0 0 24px 6px rgba(245, 158, 11, 0.3);
    }
}

.host-card.status-pending {
    border-color: #f59e0b;
    animation: pulse-pending 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    background: #ffffff;
}

.host-card.status-locked { border-color: #6366f1; border-width: 1.5px; }
.host-card.status-offline { border-color: #ef4444; border-width: 1.5px; opacity: 0.75; }

/* ==========================================================================
   Badges & Indicators
   ========================================================================== */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.3rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    backdrop-filter: blur(8px);
}

.badge-draft { background: rgba(241, 245, 249, 0.8); color: #475569; border: 1px solid rgba(203, 213, 225, 0.8); }
.badge-locked { background: rgba(254, 243, 199, 0.8); color: #b45309; border: 1px solid rgba(253, 230, 138, 0.8); }
.badge-ongoing { background: rgba(209, 250, 229, 0.85); color: #047857; border: 1px solid rgba(167, 243, 208, 0.8); }
.badge-closed { background: rgba(254, 226, 226, 0.8); color: #b91c1c; border: 1px solid rgba(254, 202, 202, 0.8); }
.badge-active { background: rgba(224, 231, 255, 0.85); color: #4338ca; border: 1px solid rgba(199, 210, 254, 0.8); }
.badge-simulation { background: rgba(255, 237, 213, 0.85); color: #c2410c; border: 1px solid rgba(254, 215, 170, 0.8); }

/* ==========================================================================
   Modal Dialogs & Floating Windows
   ========================================================================== */
.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.35);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    padding: 1rem;
}

.modal-dialog {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(28px) saturate(190%);
    -webkit-backdrop-filter: blur(28px) saturate(190%);
    border: 1.5px solid rgba(255, 255, 255, 0.90);
    border-radius: 1.75rem;
    max-width: 520px;
    width: 100%;
    padding: 2rem;
    box-shadow: 0 25px 60px -12px rgba(31, 38, 135, 0.25);
    animation: modalPop 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    color: var(--text-main);
}

@keyframes modalPop {
    from { opacity: 0; transform: scale(0.94) translateY(8px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

/* ==========================================================================
   Glass Tables & Data Lists
   ========================================================================== */
.table-container {
    width: 100%;
    overflow-x: auto;
    border: 1px solid var(--glass-border);
    border-radius: 1.25rem;
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    box-shadow: var(--glass-shadow);
}

table.table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
    text-align: left;
}

table.table th {
    background: rgba(255, 255, 255, 0.60);
    color: #475569;
    font-weight: 700;
    padding: 0.875rem 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.80);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

table.table td {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.50);
    color: var(--text-main);
}

table.table tr:hover td {
    background: rgba(255, 255, 255, 0.50);
}

/* Forms general */
.form-input, .form-select, .form-textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1.5px solid rgba(255, 255, 255, 0.85);
    border-radius: 0.875rem;
    padding: 0.625rem 0.875rem;
    font-size: 0.875rem;
    color: var(--text-main);
    transition: all 0.2s ease;
    font-family: inherit;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.95);
    border-color: var(--primary);
    box-shadow: 0 0 0 4px var(--primary-glow);
}

.card {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur)) saturate(180%);
    -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: 1.5rem;
    padding: 1.5rem;
    box-shadow: var(--glass-shadow);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.card:hover {
    background: var(--glass-bg-hover);
    border-color: rgba(255, 255, 255, 0.95);
}

/* Animations */
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.animate-spin {
    animation: spin 0.8s linear infinite !important;
    display: inline-block !important;
}

@keyframes ping {
    75%, 100% {
        transform: scale(2);
        opacity: 0;
    }
}

.animate-ping {
    animation: ping 1.2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.animate-pulse {
    animation: pulse 1.5s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* ==========================================================================
   Soft Moving Ambient & Floating Keyframes
   ========================================================================== */
@keyframes floatSlow {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(1deg); }
}

@keyframes floatReverse {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(10px) rotate(-1deg); }
}

@keyframes floatOrb1 {
    0%, 100% { transform: translate(0px, 0px) scale(1); }
    33% { transform: translate(40px, -50px) scale(1.1); }
    66% { transform: translate(-30px, 30px) scale(0.94); }
}

@keyframes floatOrb2 {
    0%, 100% { transform: translate(0px, 0px) scale(1); }
    33% { transform: translate(-45px, 40px) scale(0.92); }
    66% { transform: translate(35px, -45px) scale(1.08); }
}

@keyframes floatOrb3 {
    0%, 100% { transform: translate(0px, 0px) scale(1); }
    50% { transform: translate(25px, -30px) scale(1.12); }
}

@keyframes softGlow {
    0%, 100% { opacity: 0.65; filter: blur(64px); }
    50% { opacity: 0.95; filter: blur(80px); }
}

.animate-float-slow {
    animation: floatSlow 7s ease-in-out infinite;
}

.animate-float-reverse {
    animation: floatReverse 8s ease-in-out infinite;
}

.animate-orb-1 {
    animation: floatOrb1 16s ease-in-out infinite, softGlow 8s ease-in-out infinite alternate;
}

.animate-orb-2 {
    animation: floatOrb2 18s ease-in-out infinite, softGlow 9s ease-in-out infinite alternate;
}

.animate-orb-3 {
    animation: floatOrb3 14s ease-in-out infinite, softGlow 7s ease-in-out infinite alternate;
}

.animate-hover-float {
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease, background 0.35s ease;
}

.animate-hover-float:hover {
    transform: translateY(-8px);
}
