@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Cinzel:wght@500;600;700;800&family=Noto+Sans+Javanese:wght@400;700&display=swap');

/* ==========================================================================
   DESIGN TOKENS & VARIABLE SYSTEM (LIGHT MODE DEFAULT)
   ========================================================================== */
:root {
    /* HSL Primary Color (Royal Champagne Gold - luxury, elegant) */
    --primary-h: 43;
    --primary-s: 65%;
    --primary-l: 52%;
    --primary: hsl(var(--primary-h), var(--primary-s), var(--primary-l));
    --primary-light: hsl(var(--primary-h), var(--primary-s), 95%);
    --primary-dark: hsl(var(--primary-h), var(--primary-s), 36%);
    
    /* HSL Secondary Color (Deep Mystical Forest Emerald) */
    --secondary-h: 145;
    --secondary-s: 48%;
    --secondary-l: 24%;
    --secondary: hsl(var(--secondary-h), var(--secondary-s), var(--secondary-l));
    --secondary-light: hsl(var(--secondary-h), var(--secondary-s), 95%);
    
    /* Accent Color (Amber Gold / Radiant Cosmic Star) */
    --accent: hsl(38, 85%, 48%);
    --accent-light: hsl(38, 85%, 95%);
    
    /* State Colors */
    --success: hsl(142, 60%, 42%);
    --success-light: hsl(142, 60%, 95%);
    --info: hsl(196, 75%, 42%);
    --info-light: hsl(196, 75%, 95%);
    --warning: hsl(38, 85%, 46%);
    --warning-light: hsl(38, 85%, 95%);
    --danger: hsl(4, 75%, 52%);
    --danger-light: hsl(4, 75%, 95%);
    
    /* Neutral System (Warm organic Linen & Ivory neutrals) */
    --bg: hsl(45, 25%, 95%);
    --bg-card: rgba(255, 255, 255, 0.85);
    --bg-muted: hsl(45, 18%, 90%);
    --text: hsl(145, 30%, 8%);
    --text-secondary: hsl(145, 12%, 36%);
    --border: hsl(45, 12%, 84%);
    --shadow: 0 4px 6px -1px rgba(15, 48, 27, 0.04), 0 2px 4px -1px rgba(15, 48, 27, 0.02);
    --shadow-premium: 0 10px 30px -10px rgba(170, 124, 17, 0.06), 0 1px 3px rgba(0, 0, 0, 0.01);
    --hover-shadow: 0 20px 40px -15px rgba(170, 124, 17, 0.12);
    
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   DARK MODE OVERRIDES (Deep Astrological Cosmic Forest & Warm Champagne)
   ========================================================================== */
[data-theme="dark"] {
    --bg: #030805;
    --bg-card: rgba(8, 21, 14, 0.75);
    --bg-muted: #07150d;
    --text: #f2ebd9;
    --text-secondary: #a3b8aa;
    --border: rgba(217, 167, 82, 0.16);
    
    --primary-light: rgba(217, 167, 82, 0.08);
    --secondary-light: rgba(15, 46, 27, 0.25);
    --accent-light: rgba(229, 193, 88, 0.08);
    --success-light: rgba(76, 148, 96, 0.08);
    --info-light: rgba(14, 116, 144, 0.08);
    --warning-light: rgba(217, 167, 82, 0.08);
    --danger-light: rgba(239, 68, 68, 0.08);
    
    --shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
    --shadow-premium: 0 12px 40px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.03);
    --hover-shadow: 0 20px 50px rgba(217, 167, 82, 0.08), 0 0 35px rgba(0, 0, 0, 0.85);
}

/* ==========================================================================
   RESET & BASE STYLING
   ========================================================================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
    transition: var(--transition);
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cinzel', serif;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 0.5px;
}

/* Custom Scrollbars */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg);
}
::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--text-secondary);
}

/* ==========================================================================
   LAYOUT STRUCTURE
   ========================================================================== */
.app-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.main-content {
    flex: 1;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px 16px 60px 16px;
}

/* ==========================================================================
   MUI PREMIUM HEADER / NAVIGATION BAR
   ========================================================================== */
.header {
    background-color: rgba(var(--bg-card), 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-section .icon {
    font-size: 28px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-title {
    font-family: 'Cinzel', serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.5px;
    display: flex;
    flex-direction: column;
}

.logo-subtitle {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 9px;
    color: var(--text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: -1px;
}

.nav-links {
    display: flex;
    gap: 6px;
    align-items: center;
}

.nav-item {
    padding: 8px 12px;
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    white-space: nowrap;
}

.nav-item:hover, .nav-item.active {
    color: var(--primary);
    background-color: var(--primary-light);
}

.action-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.theme-toggle-btn, .menu-toggle-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: var(--bg-muted);
    color: var(--text);
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.theme-toggle-btn:hover {
    background-color: var(--border);
    transform: rotate(15deg);
}

.menu-toggle-btn {
    display: none; /* Mobile only, hidden on desktop default */
}

/* ==========================================================================
   MUI MATERIAL INPUTS (FLOATING LABELS)
   ========================================================================== */
.form-group {
    position: relative;
    margin-bottom: 24px;
}

.form-input {
    width: 100%;
    font-family: inherit;
    font-size: 16px;
    font-weight: 500;
    padding: 18px 16px 14px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background-color: transparent;
    color: var(--text);
    outline: none;
    transition: var(--transition);
}

.form-input::placeholder {
    color: transparent;
}

.form-label {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    font-weight: 500;
    color: var(--text-secondary);
    padding: 0 4px;
    background-color: var(--bg-card);
    transition: var(--transition);
    pointer-events: none;
}

.form-input:focus {
    border-color: var(--primary);
    border-width: 2px;
    box-shadow: 0 0 0 4px hsla(var(--primary-h), var(--primary-s), var(--primary-l), 0.12);
}

/* Float label above when focused or not empty */
.form-input:focus ~ .form-label,
.form-input:not(:placeholder-shown) ~ .form-label {
    top: 0;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
}

/* Date picker specific */
.form-input[type="date"] {
    min-height: 52px;
}

/* ==========================================================================
   MUI COMPONENT BUTTONS & RIAPLES
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 700;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    outline: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), hsl(var(--primary-h), var(--primary-s), 45%));
    color: white;
    box-shadow: var(--shadow-premium);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--hover-shadow);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--secondary), hsl(var(--secondary-h), var(--secondary-s), 45%));
    color: white;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: var(--hover-shadow);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--border);
    color: var(--text);
}

.btn-outline:hover {
    background-color: var(--bg-muted);
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

/* Ripple Click Effect (Vanilla JS) */
.ripple {
    position: absolute;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
    pointer-events: none;
}
.btn-outline .ripple {
    background-color: rgba(var(--primary-h), var(--primary-s), var(--primary-l), 0.15);
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* ==========================================================================
   TABS SYSTEMS WITH SLIDING SLIDER
   ========================================================================== */
.tabs-container {
    width: 100%;
}

.tabs-list {
    display: flex;
    background-color: var(--bg-muted);
    padding: 4px;
    border-radius: var(--radius-md);
    margin-bottom: 24px;
    position: relative;
}

.tab-trigger {
    flex: 1;
    padding: 12px 16px;
    font-size: 15px;
    font-weight: 700;
    border: none;
    background: transparent;
    color: var(--text-secondary);
    border-radius: var(--radius-sm);
    cursor: pointer;
    z-index: 2;
    transition: var(--transition);
    text-align: center;
}

.tab-trigger.active {
    color: var(--primary);
}

/* Active tab slider element */
.tab-slider {
    position: absolute;
    height: calc(100% - 8px);
    top: 4px;
    background-color: var(--bg-card);
    border-radius: calc(var(--radius-md) - 4px);
    box-shadow: var(--shadow);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fade-in 0.4s ease-out;
}

@keyframes fade-in {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   GLASSMORPHIC CARD SYSTEM
   ========================================================================== */
.card {
    background-color: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-premium);
    padding: 24px;
    transition: var(--transition);
    overflow: hidden;
    position: relative;
}

.card:hover {
    box-shadow: var(--hover-shadow);
    border-color: rgba(217, 167, 82, 0.35);
}

.card-header {
    margin-bottom: 20px;
}

.card-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 10px;
}

.card-subtitle {
    font-size: 14px;
    color: var(--text-secondary);
    margin-top: 4px;
}

.card-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Gradient card styled for pasangan */
.card-premium-gradient {
    border: 2px dashed hsla(var(--primary-h), var(--primary-s), var(--primary-l), 0.2);
    background: linear-gradient(135deg, hsla(var(--primary-h), var(--primary-s), 98%, 0.5), hsla(var(--secondary-h), var(--secondary-s), 98%, 0.5));
}
[data-theme="dark"] .card-premium-gradient {
    border: 2px dashed hsla(var(--primary-h), var(--primary-s), var(--primary-l), 0.3);
    background: linear-gradient(135deg, hsla(var(--primary-h), var(--primary-s), 14%, 0.3), hsla(var(--secondary-h), var(--secondary-s), 14%, 0.3));
}

/* ==========================================================================
   BADGES & CHIPS
   ========================================================================== */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 20px;
    text-transform: capitalize;
}

.badge-outline {
    border: 1px solid var(--border);
    background-color: transparent;
    color: var(--text-secondary);
}

.badge-secondary {
    background-color: var(--bg-muted);
    color: var(--text-secondary);
}

.badge-success {
    background-color: var(--success-light);
    color: var(--success);
}

.badge-danger {
    background-color: var(--danger-light);
    color: var(--danger);
}

.badge-warning {
    background-color: var(--warning-light);
    color: var(--warning);
}

.badge-info {
    background-color: var(--info-light);
    color: var(--primary);
}

/* ==========================================================================
   PROGRESS BAR & GAUGE
   ========================================================================== */
.progress-container {
    width: 100%;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 6px;
    font-size: 14px;
    font-weight: 600;
}

.progress-track {
    width: 100%;
    height: 8px;
    background-color: var(--bg-muted);
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background-gradient: linear-gradient(90deg, var(--primary), var(--secondary));
    background-color: var(--primary);
    border-radius: 4px;
    width: 0;
    transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   LOADING SHIMMER SKELETON
   ========================================================================== */
.shimmer-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.shimmer-card {
    height: 200px;
    border-radius: var(--radius-lg);
    background-color: var(--bg-muted);
    position: relative;
    overflow: hidden;
}

.shimmer-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    animation: shimmer-animation 1.5s infinite;
}

@keyframes shimmer-animation {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* ==========================================================================
   COMPACT & BEAUTIFUL LIST GRID
   ========================================================================== */
.feature-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 24px;
}

@media(min-width: 600px) {
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(min-width: 900px) {
    .feature-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-item {
    background-color: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    cursor: pointer;
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-premium);
    border-color: hsla(var(--primary-h), var(--primary-s), var(--primary-l), 0.3);
}

.feature-icon-wrapper {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
}

.feature-title {
    font-size: 17px;
    font-weight: 700;
}

.feature-desc {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* ==========================================================================
   WETON RESULTS DISPLAY
   ========================================================================== */
.result-header-panel {
    background-color: var(--success);
    color: white;
    padding: 16px;
    border-top-left-radius: var(--radius-lg);
    border-top-right-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    gap: 8px;
}

.result-subheader-panel {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background-color: var(--bg-card);
    border-bottom: 1px solid var(--border);
}

.result-main-weton {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 24px;
    text-align: center;
    font-size: 26px;
    font-weight: 800;
}

.result-neptu-banner {
    padding: 12px;
    text-align: center;
    font-weight: 600;
    font-size: 16px;
    border-bottom: 1px solid var(--border);
    background-color: var(--primary-light);
    color: var(--primary);
}

.result-content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 16px;
}

@media(min-width: 768px) {
    .result-content-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.result-block {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    background-color: var(--bg-card);
    transition: var(--transition);
}

.result-block:hover {
    box-shadow: var(--shadow);
}

.result-block-header {
    padding: 10px 16px;
    font-weight: 700;
    color: white;
    display: flex;
    align-items: center;
    gap: 8px;
}

.result-block-content {
    padding: 16px;
    font-size: 14px;
}

.font-jawa {
    font-family: 'Noto Sans Javanese', sans-serif;
    font-size: 22px;
    display: block;
    margin-bottom: 4px;
    color: var(--accent);
}

/* ==========================================================================
   AI INTERPRETATION PANEL
   ========================================================================== */
.ai-panel {
    border: 2px solid hsla(var(--primary-h), var(--primary-s), var(--primary-l), 0.15);
    background-color: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-top: 30px;
}

.ai-header {
    background: linear-gradient(135deg, hsl(var(--primary-h), var(--primary-s), 25%), hsl(var(--primary-h), var(--primary-s), 15%));
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ai-content {
    padding: 24px;
    font-size: 15px;
    line-height: 1.7;
}

.ai-content h3 {
    margin-top: 20px;
    margin-bottom: 8px;
    color: var(--primary);
    border-bottom: 1px solid var(--border);
    padding-bottom: 4px;
}

.ai-content p {
    margin-bottom: 12px;
}

.ai-content ul {
    margin-left: 20px;
    margin-bottom: 16px;
}

.ai-content li {
    margin-bottom: 6px;
}

/* ==========================================================================
   SHARING CONTROLS
   ========================================================================== */
.share-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    padding: 16px;
    border-top: 1px solid var(--border);
}

.share-btn {
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 700;
    border-radius: var(--radius-sm);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    color: white;
    border: none;
}

.share-facebook { background-color: #1877f2; }
.share-facebook:hover { background-color: #166fe5; }
.share-twitter { background-color: #1da1f2; }
.share-twitter:hover { background-color: #1a91da; }
.share-whatsapp { background-color: #25d366; }
.share-whatsapp:hover { background-color: #20ba5a; }
.share-telegram { background-color: #0088cc; }
.share-telegram:hover { background-color: #0077b3; }

/* ==========================================================================
   FOOTER MODULAR STYLE
   ========================================================================== */
.footer {
    background-color: var(--bg-card);
    border-top: 1px solid var(--border);
    padding: 30px 16px;
    text-align: center;
    margin-top: auto;
    font-size: 14px;
    color: var(--text-secondary);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 12px;
}

.footer-link:hover {
    color: var(--primary);
}

/* Dropdown Option Theme Color Fix */
select.form-input option {
    background-color: var(--bg-card);
    color: var(--text);
}

/* ==========================================================================
   RESPONSIVE DESIGN ADAPTABILITIES
   ========================================================================== */
/* Style for desktop horizontal 4-link navbar (Core features only) */
.nav-links-desktop {
    display: flex;
    gap: 12px;
    align-items: center;
}

@media(max-width: 1080px) {
    .nav-links-desktop {
        display: none !important;
    }
}

/* Styling for local nav dropdown menu (Lainnya ▾) */
.nav-dropdown-wrapper {
    position: relative;
    display: inline-block;
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    width: 220px;
    background-color: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-premium);
    padding: 8px;
    display: none;
    flex-direction: column;
    gap: 4px;
    z-index: 1100;
}

.nav-dropdown-menu.show {
    display: flex;
    animation: fade-in 0.2s ease-out;
}

.dropdown-item {
    padding: 10px 14px;
    font-size: 13.5px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    color: var(--text-secondary) !important;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.dropdown-item:hover {
    color: var(--primary) !important;
    background-color: var(--primary-light);
}

/* Hide the mobile hamburger navlinks entirely on desktop screens */
@media(min-width: 1081px) {
    .nav-links {
        display: none !important;
    }
}

/* Tablet & Mobile screen - collapse into premium hamburger drawer */
@media(max-width: 1080px) {
    .menu-toggle-btn {
        display: flex;
    }
    
    .nav-links {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(var(--bg-card), 0.95);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        border-bottom: 1px solid var(--border);
        padding: 0 16px;
        box-shadow: var(--shadow);
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        pointer-events: none;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.3s ease;
        z-index: 999;
    }
    
    .nav-links.show {
        max-height: 500px;
        padding: 16px;
        opacity: 1;
        pointer-events: auto;
    }
    
    .nav-item {
        width: 100%;
        padding: 12px;
        border-radius: var(--radius-md);
    }
}

/* ==========================================================================
   3D INTERACTIVE CARD FLIP SYSTEM
   ========================================================================== */
.flip-card-container {
    perspective: 1000px;
    width: 100%;
    height: 380px;
    margin-bottom: 16px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    cursor: pointer;
}

.flip-card-inner.flipped {
    transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-premium);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 24px;
    justify-content: space-between;
    transition: var(--transition);
}

.flip-card-front {
    background-color: var(--bg-card);
    color: var(--text);
}

.flip-card-back {
    background: linear-gradient(135deg, var(--primary-light), var(--bg-card));
    color: var(--text);
    transform: rotateY(180deg);
    border-color: var(--primary);
}

/* ==========================================================================
   COLLECTIBLE WETON CARD (JRPG/TAROT STYLE)
   ========================================================================== */
.weton-collectible-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    border: 2px solid gold;
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.2), var(--shadow-premium);
    transition: var(--transition);
    max-width: 420px;
    margin: 20px auto;
    background: #0d0e15; /* Dark mysterious background for JRPG Card */
    color: #e2e8f0;
}

.weton-collectible-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(255, 215, 0, 0.35), var(--hover-shadow);
}

.card-frame {
    padding: 16px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    margin: 8px;
    border-radius: calc(var(--radius-lg) - 8px);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card-cosmic-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
    padding-bottom: 8px;
    margin-bottom: 12px;
}

.card-title-main {
    font-family: 'Cinzel', serif;
    font-size: 22px;
    font-weight: 800;
    color: #ffd700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
    letter-spacing: 1px;
}

.card-jawa-script {
    font-family: 'Noto Sans Javanese', sans-serif;
    font-size: 24px;
    color: rgba(255, 215, 0, 0.7);
    margin: 8px 0;
    text-align: center;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.3);
}

.card-illustration {
    height: 160px;
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle, rgba(103, 80, 164, 0.2) 0%, rgba(13,14,21,0.95) 100%);
}

.card-stat-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background-color: rgba(13,14,21,0.85);
    border: 1px solid gold;
    color: gold;
    padding: 2px 8px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 800;
}

.card-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 12px;
}

.card-stat-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    padding: 6px;
    text-align: center;
}

.card-stat-label {
    font-size: 9px;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.card-stat-value {
    font-size: 13px;
    font-weight: 800;
    color: #fff;
}

.card-quote-box {
    margin-top: 12px;
    border-left: 2px solid gold;
    padding-left: 8px;
    font-style: italic;
    font-size: 11px;
    color: #cbd5e1;
    line-height: 1.4;
    text-align: left;
}

/* Elemental Gradients for Collectible Cards */
.weton-card-api {
    background: linear-gradient(135deg, #180808 0%, #0d0202 100%);
    border-color: #ef4444;
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.25);
}
.weton-card-api .card-title-main { color: #ef4444; }
.weton-card-api .card-frame { border-color: rgba(239, 68, 68, 0.3); }
.weton-card-api .card-quote-box { border-left-color: #ef4444; }

.weton-card-air {
    background: linear-gradient(135deg, #08121e 0%, #02070d 100%);
    border-color: #3b82f6;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.25);
}
.weton-card-air .card-title-main { color: #3b82f6; }
.weton-card-air .card-frame { border-color: rgba(59, 130, 246, 0.3); }
.weton-card-air .card-quote-box { border-left-color: #3b82f6; }

.weton-card-tanah {
    background: linear-gradient(135deg, #181408 0%, #0a0802 100%);
    border-color: #ffd700;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.25);
}
.weton-card-tanah .card-title-main { color: #ffd700; }
.weton-card-tanah .card-frame { border-color: rgba(255, 215, 0, 0.3); }
.weton-card-tanah .card-quote-box { border-left-color: #ffd700; }

.weton-card-logam {
    background: linear-gradient(135deg, #11151c 0%, #0a0c10 100%);
    border-color: #94a3b8;
    box-shadow: 0 0 20px rgba(148, 163, 184, 0.25);
}
.weton-card-logam .card-title-main { color: #cbd5e1; }
.weton-card-logam .card-frame { border-color: rgba(148, 163, 184, 0.3); }
.weton-card-logam .card-quote-box { border-left-color: #cbd5e1; }

.weton-card-kayu {
    background: linear-gradient(135deg, #081c10 0%, #020a05 100%);
    border-color: #10b981;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.25);
}
.weton-card-kayu .card-title-main { color: #10b981; }
.weton-card-kayu .card-frame { border-color: rgba(16, 185, 129, 0.3); }
.weton-card-kayu .card-quote-box { border-left-color: #10b981; }

/* ==========================================================================
   DONATION POPUP MODAL (GLASSMORPHISM STYLE)
   ========================================================================== */
.donation-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.donation-modal.show {
    opacity: 1;
}

.donation-modal-content {
    background-color: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-premium), 0 20px 25px -5px rgba(0, 0, 0, 0.2);
    width: 90%;
    max-width: 480px;
    padding: 28px;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    color: var(--text);
}

.donation-modal.show .donation-modal-content {
    transform: scale(1);
}

.donation-modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition);
    line-height: 1;
}

.donation-modal-close:hover {
    color: var(--danger);
}

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

.donation-modal-header h3 {
    font-size: 20px;
    font-weight: 800;
    margin-top: 10px;
    color: var(--primary);
}

.donation-modal-body {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
}

.donation-channels {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 16px;
}

.donation-item {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    background-color: var(--bg-muted);
    transition: var(--transition);
    text-decoration: none;
    color: var(--text) !important;
}

.donation-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
    border-color: var(--primary);
}

.donation-icon {
    font-size: 24px;
    margin-right: 12px;
}

.donation-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.donation-name {
    font-weight: 700;
    font-size: 14px;
    color: var(--text);
}

.donation-link, .donation-val {
    font-size: 12px;
    color: var(--text-secondary);
    word-break: break-all;
}

.donation-arrow {
    font-size: 14px;
    color: var(--text-secondary);
    margin-left: 8px;
}

.donation-modal-footer {
    margin-top: 24px;
    text-align: center;
}

.donation-modal-footer .btn {
    width: 100%;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* ==========================================================================
   14. FLOATING COFFEE WIDGET & SIDE-DRAWER STYLING
   ========================================================================== */
.floating-coffee-widget {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(217, 106, 43, 0.4), 0 0 0 0 rgba(217, 106, 43, 0.7);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: floating-glow 2s infinite;
}

.floating-coffee-widget:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 30px rgba(217, 106, 43, 0.6);
}

.floating-coffee-widget:active {
    transform: scale(0.95);
}

.floating-coffee-widget .widget-icon {
    font-size: 26px;
    line-height: 1;
}

@keyframes floating-glow {
    0% {
        box-shadow: 0 8px 24px rgba(217, 106, 43, 0.4), 0 0 0 0 rgba(217, 106, 43, 0.4);
    }
    70% {
        box-shadow: 0 8px 24px rgba(217, 106, 43, 0.4), 0 0 0 15px rgba(217, 106, 43, 0);
    }
    100% {
        box-shadow: 0 8px 24px rgba(217, 106, 43, 0.4), 0 0 0 0 rgba(217, 106, 43, 0);
    }
}

/* Slide Drawer Overlay */
.donation-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 1500;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.donation-drawer-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

/* Sliding side drawer */
.donation-drawer {
    position: fixed;
    top: 0;
    right: -380px;
    width: 100%;
    max-width: 360px;
    height: 100%;
    background-color: var(--bg-card);
    border-left: 1px solid var(--border);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
    z-index: 1600;
    display: flex;
    flex-direction: column;
    transition: right 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    color: var(--text);
}

.donation-drawer.open {
    right: 0;
}

.donation-drawer-header {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    background-color: var(--bg-muted);
}

.donation-drawer-close {
    font-size: 26px;
    font-weight: 700;
    color: var(--text-secondary);
    border: none;
    background: none;
    cursor: pointer;
    line-height: 1;
    padding: 4px;
    transition: var(--transition);
}

.donation-drawer-close:hover {
    color: var(--danger);
}

.donation-drawer-body {
    padding: 20px;
    flex-grow: 1;
    overflow-y: auto;
}

/* ==========================================================================
   15. INTERACTIVE EYANG AI CONSULTATION CHAT STYLING
   ========================================================================== */
.ai-chat-container {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background-color: var(--bg-card);
    display: flex;
    flex-direction: column;
    height: 480px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow);
    margin-top: 20px;
}

.ai-chat-header {
    background: linear-gradient(135deg, #2b1f15 0%, #1e130c 100%);
    color: #ffd700;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid gold;
}

.ai-chat-messages {
    flex-grow: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
    background-color: var(--bg-muted);
}

.chat-bubble {
    max-width: 80%;
    padding: 12px 16px;
    border-radius: 16px;
    font-size: 13.5px;
    line-height: 1.5;
    position: relative;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    animation: fade-in-up 0.3s ease-out;
}

@keyframes fade-in-up {
    0% { opacity: 0; transform: translateY(10px); }
    100% { opacity: 1; transform: translateY(0); }
}

.chat-bubble.eyang {
    background-color: var(--bg-card);
    border: 1px solid var(--border);
    border-left: 4px solid gold;
    color: var(--text);
    align-self: flex-start;
    border-top-left-radius: 4px;
}

.chat-bubble.user {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    align-self: flex-end;
    border-top-right-radius: 4px;
}

.chat-bubble p {
    margin-bottom: 8px;
}
.chat-bubble p:last-child {
    margin-bottom: 0;
}
.chat-bubble ul, .chat-bubble ol {
    padding-left: 20px;
    margin-top: 4px;
    margin-bottom: 4px;
}
.chat-bubble li {
    margin-bottom: 4px;
}

.ai-chat-input-area {
    padding: 16px;
    border-top: 1px solid var(--border);
    display: flex;
    gap: 10px;
    background-color: var(--bg-card);
    z-index: 10;
}

.ai-chat-input {
    flex-grow: 1;
    height: 46px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 0 16px;
    font-size: 13.5px;
    background-color: var(--bg-muted);
    color: var(--text);
    transition: var(--transition);
}

.ai-chat-input:focus {
    border-color: var(--primary);
    background-color: var(--bg-card);
}

/* Elegant Paywall Blur Overlay */
.paywall-lock-overlay {
    position: absolute;
    top: 50px; /* Below header */
    left: 0;
    width: 100%;
    height: calc(100% - 50px);
    background-color: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.paywall-lock-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.paywall-lock-content {
    background-color: var(--bg-card);
    border: 2px solid gold;
    border-radius: var(--radius-lg);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    padding: 28px;
    max-width: 420px;
    width: 90%;
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.paywall-lock-overlay.active .paywall-lock-content {
    transform: translateY(0);
}

/* Typing indicator micro-animation */
.typing-indicator {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 12px;
}

.typing-indicator span {
    width: 6px;
    height: 6px;
    background-color: var(--text-secondary);
    border-radius: 50%;
    display: inline-block;
    animation: typing-bounce 1.4s infinite ease-in-out both;
}

.typing-indicator span:nth-child(1) { animation-delay: -0.32s; }
.typing-indicator span:nth-child(2) { animation-delay: -0.16s; }

@keyframes typing-bounce {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1); }
}

/* ==========================================================================
   16. SERTIFIKAT GOLD PREMIUM LAYOUT
   ========================================================================== */
.sertifikat-preview-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 3000;
}

.sertifikat-frame {
    background: radial-gradient(circle, #20160e 0%, #0c0704 100%);
    border: 8px double #d4af37;
    border-radius: 12px;
    padding: 40px;
    max-width: 680px;
    width: 90%;
    color: #f3e9dc;
    text-align: center;
    position: relative;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5), inset 0 0 100px rgba(212,175,55,0.15);
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.sertifikat-border-deco {
    position: absolute;
    top: 15px;
    bottom: 15px;
    left: 15px;
    right: 15px;
    border: 1px solid rgba(212,175,55,0.3);
    pointer-events: none;
}

.sertifikat-jawa-logo {
    font-size: 40px;
    color: #d4af37;
    display: inline-block;
    margin-bottom: 12px;
}

/* ==========================================================================
   WANCI & SUNSET SHIFT VISUALIZATIONS (COSMIC LUXURY STYLE)
   ========================================================================== */
.wanci-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(217, 167, 82, 0.12);
    border: 1px solid rgba(217, 167, 82, 0.3);
    color: var(--primary);
    border-radius: 30px;
    font-weight: 700;
    font-size: 13.5px;
    margin-top: 8px;
    box-shadow: 0 0 12px rgba(217, 167, 82, 0.05);
}

.sunset-alert {
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: #fca5a5;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    font-size: 13.5px;
    margin-top: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1.4;
    border-left: 4px solid #ef4444;
}

[data-theme="light"] .sunset-alert {
    background: rgba(220, 38, 38, 0.05);
    border: 1px solid rgba(220, 38, 38, 0.15);
    color: #991b1b;
}

.form-input[type="time"] {
    min-height: 52px;
}

/* ==========================================================================
   KAWRUH-STYLE JAVANESE CALENDAR INTEGRATION
   ========================================================================== */

/* Weekday header blocks */
.calendar-grid-header div {
    background-color: #f3f4f6;
    color: #4b5563;
    padding: 8px 0;
    border-radius: 8px;
    font-weight: 700;
    font-size: 13px;
    text-align: center;
}
[data-theme="dark"] .calendar-grid-header div {
    background-color: #1e293b;
    color: #cbd5e1;
}

/* Calendar grid day cell box */
.calendar-day-box {
    background-color: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 12px 8px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    min-height: 110px;
    transition: var(--transition);
    cursor: pointer;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}

.calendar-day-box:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

/* Day cell empty state at start of month (visible box, no text) */
.calendar-day-box.empty-day {
    background-color: var(--bg-card);
    border: 1px solid var(--border);
    opacity: 0.35;
    cursor: default;
    pointer-events: none;
}
.calendar-day-box.empty-day:hover {
    border-color: var(--border);
    box-shadow: none;
    transform: none;
}

/* Day cell blank state at end of month (completely invisible) */
.calendar-day-box.blank-day {
    border: none !important;
    background: transparent !important;
    cursor: default;
    pointer-events: none;
    box-shadow: none !important;
    transform: none !important;
}

/* Day cell current/selected state */
.calendar-day-box.selected-day {
    background-color: #e0f2fe;
    border: 2px solid #3b82f6;
}
[data-theme="dark"] .calendar-day-box.selected-day {
    background-color: rgba(59, 130, 246, 0.12);
    border: 2px solid #3b82f6;
}

/* Day cell inner typography elements */
.calendar-day-jawa-tgl {
    font-size: 11px;
    font-weight: 500;
    color: var(--text-secondary);
    text-align: center;
    line-height: 1.2;
}
.calendar-day-box.selected-day .calendar-day-jawa-tgl {
    color: #1e3a8a;
}
[data-theme="dark"] .calendar-day-box.selected-day .calendar-day-jawa-tgl {
    color: #93c5fd;
}

.calendar-day-gregorian-num {
    font-size: 26px;
    font-weight: 800;
    color: #b91c1c; /* Bold red */
    margin: 4px 0;
    line-height: 1;
}

.calendar-day-weton-nama {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-secondary);
    text-align: center;
    line-height: 1.2;
}
.calendar-day-box.selected-day .calendar-day-weton-nama {
    color: #1e3a8a;
}
[data-theme="dark"] .calendar-day-box.selected-day .calendar-day-weton-nama {
    color: #93c5fd;
}

/* Modal Holiday Banner */
.calendar-modal-holiday {
    background-color: #fef8e7;
    border: 1px solid #fde49e;
    color: #b06000;
    padding: 12px 16px;
    font-size: 13.5px;
    font-weight: 600;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}
[data-theme="dark"] .calendar-modal-holiday {
    background-color: rgba(254, 248, 231, 0.08);
    border: 1px solid rgba(253, 228, 158, 0.18);
    color: #fde49e;
}

/* Modal Spiritual Significance Banner */
.calendar-modal-spiritual {
    background-color: #ecfdf5;
    border: 1px solid #a7f3d0;
    color: #065f46;
    padding: 12px 16px;
    font-size: 13.5px;
    font-weight: 600;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}
[data-theme="dark"] .calendar-modal-spiritual {
    background-color: rgba(76, 148, 96, 0.08);
    border: 1px solid rgba(167, 243, 208, 0.18);
    color: #a7f3d0;
}

/* Modal Info Card Panels */
.calendar-detail-card {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}
[data-theme="dark"] .calendar-detail-card {
    background-color: var(--bg-muted);
    border: 1px solid var(--border);
}

.calendar-detail-card-header {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-secondary);
    display: block;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}
[data-theme="dark"] .calendar-detail-card-header {
    color: var(--primary);
}

.calendar-detail-grid {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 6px 12px;
    font-size: 14px;
    line-height: 1.5;
}

.calendar-detail-grid .label {
    color: var(--text-secondary);
    font-weight: 500;
}

.calendar-detail-grid .value {
    color: var(--text);
    font-weight: 700;
}

.calendar-detail-grid .value.highlight {
    color: var(--primary);
}

/* Tutup Button Custom Teal/Secondary Color */
.btn-tutup-custom {
    background-color: #1f4e4d;
    color: #ffffff;
    font-weight: 700;
    padding: 10px 24px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-size: 13.5px;
}

.btn-tutup-custom:hover {
    background-color: #153534;
    transform: translateY(-1px);
}


