:root {
    --bg-base: #eef7ff;
    --surface-glass: rgba(255, 255, 255, 0.92);
    --surface-panel: rgba(255, 255, 255, 0.96);
    --border-light: rgba(15, 76, 129, 0.16);
    --border-focus: rgba(37, 99, 235, 0.24);
    
    --primary: #2563eb;
    --primary-glow: rgba(37, 99, 235, 0.12);
    --primary-gradient: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    
    --warning: #d97706;
    --warning-glow: rgba(217, 119, 6, 0.15);
    --warning-gradient: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    
    --success: #10b981;
    --success-glow: rgba(16, 185, 129, 0.15);
    --success-gradient: linear-gradient(135deg, #10b981 0%, #059669 100%);
    
    --danger: #f43f5e;
    --danger-glow: rgba(244, 63, 94, 0.15);
    --danger-gradient: linear-gradient(135deg, #f43f5e 0%, #e11d48 100%);

    --text-primary: #111827;
    --text-secondary: #334155;
    --text-muted: #475569;
    
    --font-display: "Plus Jakarta Sans", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    
    --transition-smooth: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-premium: 0 12px 30px rgba(15, 23, 42, 0.08);
}

/* Override white text to black */
/* Base Styles */
* {
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-base);
    background-image: linear-gradient(135deg, #eef7ff 0%, #dcefff 100%);
    background-attachment: fixed;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition-smooth);
}
a:hover {
    color: #60a5fa;
}

/* Modern OFW Portal Header */
.navbar {
    background: #003060;
    border: none;
    border-radius: 0;
    margin: 0;
    max-width: none;
    padding: 0;
    box-shadow: none;
    position: sticky;
    top: 0;
    z-index: 1030;
    width: 100%;
    color: #ffffff;
    transition: transform 0.28s ease, box-shadow 0.28s ease, background-color 0.28s ease;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 1rem 1.2rem;
    flex-wrap: wrap;
}

.navbar.scrolled {
    box-shadow: 0 20px 50px rgba(37, 99, 235, 0.14);
}

.navbar.header-hidden {
    transform: translateY(-110%);
}

.header-shell {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 0.75rem !important;
    width: 100% !important;
    max-width: 1320px !important;
    margin: 0 auto !important;
    min-height: 100% !important;
    padding: 1rem 1rem !important;
}

.header-nav-wrap {
    display: flex !important;
    align-items: center !important;
    margin-left: auto !important;
    flex-wrap: wrap !important;
    justify-content: flex-end !important;
    align-self: center !important;
    min-width: 0 !important;
}

.navbar .navbar-brand {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 0.4rem !important;
    padding: 0 !important;
    margin: 0 !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    flex: 1 1 auto !important;
    min-width: 0 !important;
    max-width: 100% !important;
}

.navbar-brand .brand-main {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 0.2rem !important;
    width: 100% !important;
}

.navbar-brand .brand-title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: -0.025em;
    color: #ffffff;
    line-height: 1.15;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.navbar-brand .brand-subtitle {
    font-size: 0.64rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    display: block;
    margin-top: 0.02rem;
}

.navbar-brand .brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.1rem;
    height: 2.1rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #2563eb, #60a5fa);
    color: #fff;
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.18);
    font-size: 0.95rem;
}

.brand-strip {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    gap: 0.25rem !important;
    margin-top: 0.02rem !important;
    max-width: 100% !important;
}

.brand-pill {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.26rem !important;
    padding: 0.2rem 0.5rem !important;
    border-radius: 999px !important;
    background: rgba(255, 255, 255, 0.12) !important;
    color: #ffffff !important;
    font-size: 0.6rem !important;
    font-weight: 700 !important;
    border: 1px solid rgba(255, 255, 255, 0.22) !important;
    box-shadow: none !important;
}

.brand-pill i {
    color: #ffffff;
}

.navbar-collapse {
    margin-top: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    display: flex !important;
    justify-content: flex-end;
    align-items: center;
}

.navbar-nav {
    gap: 0.5rem;
    align-items: center;
    margin-left: auto;
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-self: center;
    padding: 0;
}

.navbar .navbar-nav .nav-link,
.navbar .navbar-nav .dropdown {
    display: inline-flex !important;
    align-items: center !important;
}

.navbar-nav .nav-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    color: #ffffff !important;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.7rem 1rem !important;
    border-radius: 999px;
    transition: var(--transition-smooth);
    letter-spacing: 0.01em;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: none;
    white-space: nowrap;
}

.navbar-nav .nav-link:hover {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.14);
    transform: translateY(-1px);
    border-color: rgba(255, 255, 255, 0.3);
}

.navbar-nav .nav-link.active {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: none;
}

.header-language { margin-left: 0.2rem; }

.header-language .dropdown-toggle {
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: #ffffff;
    font-weight: 700;
    border-radius: 999px;
    padding: 0.7rem 0.95rem;
    box-shadow: none;
}

.header-language .dropdown-toggle:hover,
.header-language .dropdown-toggle:focus {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.14);
    box-shadow: none;
}

.header-language .dropdown-menu {
    border-radius: 16px;
    border: 1px solid rgba(37, 99, 235, 0.12);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.navbar-toggler {
    border: 0;
    padding: 0.4rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
}

@media (max-width: 991.98px) {
    .navbar {
        padding: 0.9rem 1rem;
        width: calc(100% - 20px);
    }

    .header-shell {
        align-items: flex-start;
    }

    .navbar-brand {
        flex-wrap: wrap !important;
        justify-content: space-between !important;
    }

    .header-nav-wrap {
        width: 100%;
        margin-left: 0;
        margin-top: 0.75rem;
    }

    .navbar-collapse {
        width: 100%;
    }

    .navbar-nav {
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
        padding-top: 0.75rem;
        border-top: 1px solid rgba(37, 99, 235, 0.12);
    }

    .navbar-nav .nav-link,
    .header-language .dropdown-toggle {
        width: 100%;
        justify-content: flex-start;
        padding: 0.85rem 1rem;
        border-radius: 16px;
    }

    .header-language {
        width: 100%;
        margin-left: 0;
    }

    .brand-strip {
        gap: 0.35rem !important;
    }
}

@media (max-width: 767.98px) {
    html {
        font-size: clamp(14px, 1.3vw, 16px);
    }

    .navbar {
        padding: 0.75rem 0.9rem;
        margin: 12px auto 0;
        width: calc(100% - 16px);
        border-radius: 20px;
    }

    .hero-card,
    .card {
        padding: 1.5rem;
    }

    .hero-card h1,
    .hero-card p,
    .badge-pill,
    .btn {
        width: 100%;
    }

    .hero-actions {
        flex-direction: column;
        gap: 0.85rem;
    }

    .row.g-4 > .col-md-4,
    .row.g-4 > .col-lg-4,
    .row.g-4 > .col-lg-5,
    .row.g-4 > .col-lg-7 {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

@media (max-width: 575.98px) {
    .navbar {
        padding: 0.7rem 0.8rem;
        border-radius: 16px;
    }

    .navbar-brand .brand-subtitle {
        display: none;
    }

    .navbar-brand .brand-title {
        font-size: 0.98rem;
    }

    .brand-pill {
        font-size: 0.61rem;
    }

    .hero-card {
        padding: 1.25rem;
    }

    .badge-pill,
    .hero-badge,
    .btn {
        font-size: 0.95rem;
    }

    .card.p-4,
    .saas-card {
        padding: 1.25rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.6; }
}

@keyframes shimmers {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.animate-fade-in {
    animation: fadeInUp 0.45s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Hero Section */
.hero {
    padding: 3rem 0;
    position: relative;
}

.hero-shell {
    background: var(--surface-glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-light);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: var(--shadow-premium);
    position: relative;
    overflow: hidden;
}

.hero-shell::before {
    content: "";
    position: absolute;
    top: -20%;
    right: -10%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: pulseGlow 8s infinite ease-in-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.75rem;
    border-radius: 99px;
    background: var(--primary-glow);
    color: #60a5fa;
    font-weight: 600;
    font-size: 0.8rem;
    margin-bottom: 1.25rem;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.mini-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    width: 100%;
    justify-content: center;
    padding: 0.7rem 0.8rem;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(239,246,255,0.8));
    border: 1px solid rgba(59, 130, 246, 0.15);
    color: var(--text-secondary);
    font-size: 0.84rem;
    font-weight: 600;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.04);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.hero-card-panel {
    border: 1px solid var(--border-light);
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--text-primary);
    border-radius: 20px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.hero-card {
    background: var(--surface-glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-light);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: var(--shadow-premium);
}

.hero-card .badge-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.75rem;
    border-radius: 99px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.8rem;
    border: 1px solid var(--border-light);
}

/* Glassmorphic Cards */
.card {
    border: 1px solid var(--border-light);
    border-radius: 20px;
    background: var(--surface-glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: var(--shadow-premium);
    transition: var(--transition-smooth);
}

.card:hover {
    transform: translateY(-4px);
    border-color: rgba(37, 99, 235, 0.16);
    box-shadow: 0 20px 42px rgba(15, 23, 42, 0.12);
}

.alert-info {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.12), rgba(239, 246, 255, 0.92));
    color: #1d4ed8;
    border: 1px solid rgba(59, 130, 246, 0.18);
}

.badge-status {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.badge-submitted {
    background: rgba(16,185,129,0.12);
    color: #047857;
}

.service-card {
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.03) 0%, transparent 60%);
    pointer-events: none;
}

.service-icon {
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: var(--primary-glow);
    color: var(--primary);
    margin-bottom: 1.25rem;
    font-size: 1.25rem;
    border: 1px solid rgba(59, 130, 246, 0.2);
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    background: var(--primary-gradient);
    color: white;
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.3);
}

/* Buttons */
.btn {
    border-radius: 99px;
    padding: 0.65rem 1.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}

.btn:active {
    transform: scale(0.98);
}

.btn-primary {
    background: var(--primary-gradient);
    color: white;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.5);
    background: linear-gradient(135deg, #4f46e5 0%, #3b82f6 100%);
    color: white;
}

.btn-warning {
    background: var(--warning-gradient);
    color: #06080f;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.btn-warning:hover {
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.5);
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #06080f;
}

.btn-outline-primary {
    border-color: rgba(59, 130, 246, 0.4);
    color: #60a5fa;
    background: rgba(59, 130, 246, 0.04);
}

.btn-outline-primary:hover {
    background: var(--primary-gradient);
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

/* Forms styling */
.form-label {
    font-weight: 500;
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.form-control,
.form-select,
.form-textarea {
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 0.7rem 0.95rem;
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-primary);
    transition: var(--transition-smooth);
}

.form-control::placeholder {
    color: var(--text-muted);
}

.form-control:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-primary);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.15);
    outline: none;
}

/* Dropdown select options styling */
.form-select {
    background-color: #ffffff !important;
    color: #111827 !important;
}

.form-select option {
    background-color: #ffffff;
    color: #111827;
}

#complaint_type.form-select,
#complaint_type.form-select option {
    background-color: #ffffff !important;
    color: #111827 !important;
}

/* Badges */
.badge-status {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.75rem;
    border-radius: 99px;
    font-size: 0.75rem;
    font-weight: 600;
    border-width: 1px;
    border-style: solid;
}
.badge-status::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    display: inline-block;
}

.badge-submitted {
    background: rgba(59, 130, 246, 0.08);
    color: #60a5fa;
    border-color: rgba(59, 130, 246, 0.2);
}
.badge-submitted::before { background-color: #3b82f6; }

.badge-under-review,
.badge-review {
    background: rgba(245, 158, 11, 0.08);
    color: #fbbf24;
    border-color: rgba(245, 158, 11, 0.2);
}
.badge-under-review::before,
.badge-review::before { background-color: #f59e0b; }

.badge-resolved {
    background: rgba(16, 185, 129, 0.08);
    color: #34d399;
    border-color: rgba(16, 185, 129, 0.2);
}
.badge-resolved::before { background-color: #10b981; }

.badge-rejected {
    background: rgba(244, 63, 94, 0.08);
    color: #f87171;
    border-color: rgba(244, 63, 94, 0.2);
}
.badge-rejected::before { background-color: #f43f5e; }

/* Category badges & mini pills */
.mini-pill {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-secondary);
    border-radius: 10px;
    padding: 0.6rem;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid var(--border-light);
    transition: var(--transition-smooth);
}
.mini-pill:hover {
    background: rgba(59, 130, 246, 0.08);
    border-color: rgba(59, 130, 246, 0.25);
    color: var(--text-primary);
}

/* Timeline Components */
.timeline {
    position: relative;
    padding-left: 1.5rem;
    margin: 1.5rem 0 0.5rem;
}
.timeline::before {
    content: "";
    position: absolute;
    left: 4.5px;
    top: 5px;
    bottom: 5px;
    width: 2px;
    background: rgba(255, 255, 255, 0.08);
}
.timeline li {
    position: relative;
    margin-bottom: 1.5rem;
    padding-left: 0.5rem;
    color: var(--text-secondary);
}
.timeline li:last-child {
    margin-bottom: 0;
}
.timeline-dot {
    position: absolute;
    left: -1.5rem;
    top: 7px;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #475569;
    border: 2px solid var(--bg-base);
    transition: var(--transition-smooth);
    box-shadow: 0 0 0 0 rgba(71, 85, 105, 0.3);
}
.timeline-dot.done {
    background: var(--success);
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.4);
}
.timeline-dot.active {
    background: var(--warning);
    box-shadow: 0 0 10px rgba(245, 158, 11, 0.6);
    transform: scale(1.2);
}
.timeline li.timeline-active-text {
    color: var(--text-primary);
    font-weight: 600;
}

/* Custom Progress bar override */
.progress {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 99px;
    overflow: hidden;
}
.progress-bar {
    background: var(--primary-gradient);
    box-shadow: 0 0 12px rgba(59, 130, 246, 0.5);
    border-radius: 99px;
}

/* Tables in admin panel */
.table-responsive {
    border-radius: 12px;
    border: 1px solid var(--border-light);
    background: rgba(0, 0, 0, 0.15);
}
.table {
    margin-bottom: 0;
    color: var(--text-primary);
    border-collapse: collapse;
}
.table th {
    background-color: rgba(255, 255, 255, 0.02) !important;
    color: var(--text-secondary) !important;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    padding: 1rem 1.25rem !important;
    border-bottom: 1px solid var(--border-light) !important;
}
.table td {
    background-color: transparent !important;
    color: var(--text-secondary);
    font-size: 0.875rem;
    padding: 1rem 1.25rem !important;
    border-bottom: 1px solid var(--border-light) !important;
    vertical-align: middle;
}
.table tr:last-child td {
    border-bottom: none !important;
}
.table-hover tbody tr:hover td {
    color: var(--text-primary);
    background-color: rgba(255, 255, 255, 0.015) !important;
}

/* Alerts */
.alert {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-light);
    border-radius: 14px;
    color: var(--text-primary);
    padding: 1rem 1.25rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.alert-success {
    background: rgba(16, 185, 129, 0.08);
    border-color: rgba(16, 185, 129, 0.2);
    color: #a7f3d0;
}
.alert-danger {
    background: rgba(244, 63, 94, 0.08);
    border-color: rgba(244, 63, 94, 0.2);
    color: #fecdd3;
}

/* Lists and details layout */
.list-group-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-light);
    border-radius: 12px !important;
    color: var(--text-secondary);
    padding: 1rem;
    margin-bottom: 0.75rem;
    transition: var(--transition-smooth);
}
.list-group-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.12);
}

.small-muted {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

/* Loading Skeleton CSS */
.skeleton {
    background: linear-gradient(90deg, rgba(255,255,255,0.03) 25%, rgba(255,255,255,0.08) 37%, rgba(255,255,255,0.03) 63%);
    background-size: 400% 100%;
    animation: shimmers 1.4s ease infinite;
    border-radius: 8px;
}
.skeleton-text {
    height: 1rem;
    margin-bottom: 0.5rem;
}
.skeleton-title {
    height: 1.5rem;
    width: 60%;
    margin-bottom: 1rem;
}
.skeleton-button {
    height: 2.5rem;
    width: 100px;
    border-radius: 20px;
}

/* Custom layout refinements */
.hero-card-panel ul {
    padding-left: 1.25rem;
    color: var(--text-secondary);
}
.hero-card-panel ul li {
    margin-bottom: 0.5rem;
}

.mini-detail-card p {
    margin-bottom: 0.55rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}
.mini-detail-card p strong {
    color: var(--text-primary);
    font-weight: 500;
}

/* Responsive Overrides */
@media (max-width: 768px) {
    .navbar {
        margin: 0.5rem auto;
        border-radius: 14px;
        width: calc(100% - 1rem);
    }
    
    .hero {
        padding: 1.5rem 0;
    }
    
    .hero-shell {
        padding: 1.5rem;
        border-radius: 20px;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
    
    .btn {
        width: 100%;
    }

    .hero-card-panel,
    .mini-detail-card {
        padding: 1rem;
    }
}

