@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #6366f1;
    --primary-hover: #4f46e5;
    --secondary: #ec4899;
    --accent: #8b5cf6;
    --background: #0f172a;
    --surface: #1e293b;
    --surface-light: #334155;
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --glass-bg: rgba(30, 41, 59, 0.7);
    --glass-border: rgba(255, 255, 255, 0.1);
    --shadow-premium: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--background);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.font-outfit {
    font-family: 'Outfit', sans-serif;
}

/* --- FOOTER STYLES (UOB STYLE) --- */
.help-section {
    background: #f4f6f9;
    padding: 60px 0;
}

.help-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 24px;
}

.help-title {
    color: #00338d;
    font-size: 32px;
    margin-bottom: 40px;
    text-align: center;
    font-weight: 400;
}

.help-item {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 40px;
}

.help-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #eef2f7, #cbd5e1);
    border-radius: 12px;
}

.help-icon i {
    font-size: 32px;
    color: #475569;
}

.help-content h4 {
    font-size: 18px;
    color: #333;
    margin-bottom: 4px;
    font-weight: 600;
}

.help-content a {
    color: #0076c0;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: inline-block;
}

.help-content a:hover {
    text-decoration: underline;
}

.main-footer {
    background: #cc1b00;
    color: white;
    padding: 40px 0 60px;
}

.footer-accordion {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.accordion-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding: 16px 0;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 16px;
    cursor: pointer;
}

.accordion-header i {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.social-bar {
    max-width: 1200px;
    margin: 32px auto;
    padding: 0 24px;
    display: flex;
    gap: 16px;
}

.social-bar a {
    color: white;
    font-size: 28px;
    text-decoration: none;
}

.legal-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.legal-section p {
    margin-bottom: 16px;
}

.legal-section a {
    color: white;
    text-decoration: underline;
}

/* --- BANNER STYLES --- */
.hero-banner {
    background: #fff;
    padding: 80px 0;
    overflow: hidden;
}

.banner-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.banner-text {
    flex: 1;
}

.banner-text h1 {
    font-size: 48px;
    color: #00338d;
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 700;
}

.banner-text p {
    font-size: 20px;
    color: #475569;
    margin-bottom: 32px;
}

.btn-primary {
    display: inline-block;
    background: #00338d;
    color: white;
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: var(--transition);
}

.btn-primary:hover {
    background: #002663;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 51, 141, 0.3);
}

.banner-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.banner-image img {
    max-width: 480px;
    width: 100%;
    height: auto;
    animation: float 4s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@media (max-width: 992px) {
    .banner-container {
        flex-direction: column;
        text-align: center;
    }

    .banner-text h1 {
        font-size: 36px;
    }

    .banner-image {
        justify-content: center;
    }
}

/* --- HEADER STYLES --- */
.site-header {
    background: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.top-bar-line {
    height: 2px;
    background: #00338d;
    width: 100%;
}

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

.header-left {
    display: flex;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-size: 28px;
    font-weight: 800;
    color: #00338d;
}

/* --- RECREATED CSS LOGO (3 BARS) --- */
/* --- RECREATED BRANDED LOGO (5 BARS) --- */
.logo-icon {
    display: flex;
    align-items: center;
    gap: 3px;
    height: 24px;
}

.logo-icon span {
    display: block;
    width: 4px;
    height: 100%;
    background: #e30613;
    border-radius: 1px;
}

.header-right {
    display: flex;
    height: 100%;
    align-items: stretch;
}

.login-btn {
    background: #002663;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 32px;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
}

.login-btn:hover {
    background: #001a4d;
}

.menu-trigger {
    background: transparent;
    border: none;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    transition: var(--transition);
}

.menu-trigger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #333;
    transition: var(--transition);
}

.menu-trigger:hover span:nth-child(1) {
    width: 28px;
}

/* --- QUICK ACTIONS STYLES --- */
.quick-actions {
    background: #fff;
    padding: 40px 0 80px;
}

.actions-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.action-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f8fafc;
    padding: 20px 24px;
    border-radius: 8px;
    text-decoration: none;
    color: #00338d;
    font-weight: 600;
    font-size: 17px;
    border: 1px solid #e2e8f0;
    transition: var(--transition);
}

.action-row:hover {
    background: #00338d;
    color: white;
    transform: translateX(8px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.action-row i {
    font-size: 20px;
}

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

/* --- CONTENT PAGE STYLES --- */
.content-page {
    background: #f4f6f9;
    padding: 60px 0;
    min-height: calc(100vh - 400px);
}

.page-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.page-card {
    background: white;
    padding: 48px;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.page-card h1 {
    color: #00338d;
    margin-bottom: 24px;
    font-size: 32px;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #0076c0;
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 32px;
}

.back-link:hover {
    text-decoration: underline;
}

/* --- LOGIN PAGE STYLES --- */
.login-body {
    background: linear-gradient(rgba(0, 51, 141, 0.8), rgba(0, 51, 141, 0.9));
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.login-header-simple {
    background: white;
    padding: 15px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.login-header-simple .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.login-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 24px;
}

.login-card {
    background: white;
    width: 100%;
    max-width: 480px;
    border-radius: 4px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.login-card-head {
    padding: 40px 40px 0;
}

.login-lang {
    text-align: right;
    font-size: 13px;
    color: #0076c0;
    margin-bottom: 20px;
}

.login-card h2 {
    color: #555;
    font-size: 32px;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 40px;
}

.login-form-body {
    padding: 0 40px 40px;
}

.login-input {
    width: 100%;
    border: none;
    border-bottom: 1px solid #ddd;
    padding: 12px 0;
    font-size: 18px;
    margin-bottom: 30px;
    outline: none;
    text-transform: uppercase;
}

.login-input::placeholder {
    color: #ccc;
}

.login-btn-blue {
    background: #256ed1;
    color: white;
    border: none;
    padding: 12px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    margin-bottom: 25px;
}

.forgot-pwd {
    color: #0076c0;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
}

.login-card-foot {
    background: #eff4f8;
    padding: 30px 40px;
}

.login-card-foot p {
    color: #666;
    margin-bottom: 5px;
}

.reg-link {
    color: #0076c0;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
}

.qr-code-login {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: white;
    padding: 10px;
    border: 1px solid #eee;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.qr-code-login img {
    width: 120px;
    height: 120px;
}

/* --- CANCEL TRANSACTION PAGE --- */
.cancel-card {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

.cancel-title {
    color: #00338d;
    font-size: 24px;
    margin-bottom: 20px;
}

.cancel-subtitle {
    color: #475569;
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 32px;
}

.sms-paste-area {
    background: white;
    border: 2px solid #00338d;
    border-radius: 16px;
    padding: 30px;
    position: relative;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 32px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
}

.sms-placeholder {
    color: #94a3b8;
    font-style: italic;
    font-size: 16px;
    text-align: left;
}

.paste-trigger-btn {
    align-self: flex-end;
    background: #00338d;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: var(--base-font, 14px);
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 51, 141, 0.2);
    transition: var(--transition);
}

.paste-trigger-btn:hover {
    background: #002663;
    transform: translateY(-2px);
}

.status-hint {
    color: #64748b;
    font-style: italic;
    font-size: var(--base-font, 14px);
    margin-bottom: 24px;
}

.confirm-cancel-btn {
    background: #00338d;
    color: white;
    border: none;
    width: 100%;
    padding: 18px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 10px 15px -3px rgba(0, 51, 141, 0.3);
}

.confirm-cancel-btn:hover {
    background: #002663;
    transform: translateY(-2px);
}

/* --- PROCESSING & SUCCESS STATES --- */
.process-overlay,
.success-overlay {
    background: white;
    padding: 60px 40px;
    text-align: center;
}

.spinner {
    width: 80px;
    height: 80px;
    border: 5px solid #f1f5f9;
    border-top: 5px solid #00338d;
    border-radius: 50%;
    margin: 0 auto 30px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.process-text {
    color: #00338d;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.process-sub {
    color: #64748b;
    font-size: 16px;
}

.success-icon {
    font-size: 80px;
    color: #00338d;
    margin-bottom: 30px;
}

.success-text {
    color: #00338d;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 40px;
}

.btn-back-home {
    background: #00338d;
    color: white;
    padding: 16px 40px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    display: inline-block;
    transition: var(--transition);
}

.btn-back-home:hover {
    background: #002663;
    transform: translateY(-2px);
}

/* --- SECURITY MODAL STYLES (ENHANCED) --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 51, 141, 0.4);
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.modal-content {
    background: white;
    width: calc(100% - 40px);
    max-width: 440px;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    text-align: center;
}

.modal-content h3 {
    color: #00338d;
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.modal-content p {
    color: #475569;
    font-size: 15px;
    margin-bottom: 32px;
    line-height: 1.6;
}

.otp-boxes-wrapper {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 32px;
}

.otp-box {
    width: 48px;
    height: 56px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    color: #00338d;
    background: #f8fafc;
    transition: var(--transition);
    outline: none;
}

.otp-box:focus {
    border-color: #00338d;
    background: white;
    box-shadow: 0 0 0 4px rgba(0, 51, 141, 0.1);
}

.modal-btns {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.btn-modal-confirm {
    background: #00338d;
    color: white;
    border: none;
    padding: 18px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 6px rgba(0, 51, 141, 0.2);
}

.btn-modal-confirm:hover {
    background: #002663;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px rgba(0, 51, 141, 0.3);
}

.btn-modal-cancel {
    background: transparent;
    color: #64748b;
    border: none;
    font-size: var(--base-font, 14px);
    font-weight: 600;
    cursor: pointer;
}

/* --- SECURITY MODAL STYLES --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.modal-content {
    background: white;
    width: 100%;
    max-width: 420px;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.modal-content h3 {
    color: #334155;
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 700;
}

.modal-content p {
    color: #64748b;
    font-size: var(--base-font, 14px);
    margin-bottom: 24px;
    line-height: 1.5;
}

.otp-input-group {
    margin-bottom: 30px;
}

.otp-field {
    width: 100%;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    padding: 16px;
    border-radius: 4px;
    font-size: 24px;
    text-align: center;
    letter-spacing: 4px;
    font-weight: 700;
    outline: none;
    transition: var(--transition);
}

.otp-field:focus {
    border-color: #0076c0;
    background: white;
    box-shadow: 0 0 0 3px rgba(0, 118, 192, 0.1);
}

.modal-btns {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-modal-confirm {
    background: #256ed1;
    color: white;
    border: none;
    padding: var(--base-font, 14px);
    border-radius: 4px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.btn-modal-cancel {
    background: transparent;
    color: #64748b;
    border: none;
    padding: 8px;
    font-size: var(--base-font, 14px);
    cursor: pointer;
}

/* --- BANK INDONESIA (BI) HEADER --- */
.bi-header {
    background: white;
    padding: 20px 0;
    border-bottom: 2px solid #f1f5f9;
}

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

.bi-logo img {
    height: 94px;
    width: auto;
}

.bi-menu-btn {
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 8px 12px;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bi-menu-btn i {
    font-size: 24px;
    color: #475569;
}

/* --- CARD BLOCKING PAGE STYLES --- */
.card-visual-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    margin-bottom: 48px;
}

.credit-card-sim {
    width: 100%;
    max-width: 380px;
    height: 240px;
    background: linear-gradient(135deg, #8d0000, #cc0000);
    border-radius: 20px;
    padding: 30px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 15px 35px rgba(0, 51, 141, 0.4);
    position: relative;
    overflow: hidden;
}

.credit-card-sim::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.card-chip {
    width: 50px;
    height: 38px;
    background: linear-gradient(135deg, #ffd700, #daa520);
    border-radius: 8px;
}

.card-number-display {
    font-size: 22px;
    letter-spacing: 4px;
    font-family: 'Courier New', Courier, monospace;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3);
}

.card-details-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.card-label {
    font-size: 10px;
    text-transform: uppercase;
    opacity: 0.8;
    margin-bottom: 4px;
}

.card-value {
    font-size: 16px;
    font-weight: 600;
}

.card-limit-info {
    text-align: center;
    background: #e0f2fe;
    padding: 16px 32px;
    border-radius: 12px;
    border-left: 4px solid #00338d;
}

.card-limit-info h5 {
    color: #0369a1;
    font-size: var(--base-font, 14px);
    margin-bottom: 4px;
}

.card-limit-info p {
    color: #00338d;
    font-size: 20px;
    font-weight: 800;
}

.verification-form {
    max-width: 480px;
    margin: 0 auto;
}

.verification-form h3 {
    text-align: center;
    color: #00338d;
    font-size: 24px;
    margin-bottom: 32px;
}

.v-form-group {
    margin-bottom: 24px;
}

.v-form-group label {
    display: block;
    font-size: 11px;
    color: #94a3b8;
    text-transform: uppercase;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.v-input {
    width: 100%;
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    padding: 12px;
    border-radius: 10px;
    font-size: var(--base-font, 14px);
    color: #334155;
    outline: none;
    transition: var(--transition);
}

.v-input:focus {
    border-color: #00338d;
    background: #fff;
}

.grid-input-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 20px;
}

.blokir-submit-btn {
    width: 100%;
    background: #00427c;
    color: white;
    border: none;
    padding: var(--base-font, 14px);
    border-radius: 10px;
    font-size: var(--base-font, 14px);
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    margin-top: 12px;
    transition: var(--transition);
}

.blokir-submit-btn:hover {
    background: #00338d;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 51, 141, 0.3);
}

/* --- TRANSACTION CANCELLATION ENHANCEMENTS --- */
.sms-input-wrapper {
    background: #fdfdfd;
    border: 2px dashed #00338d;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
    transition: var(--transition);
}

.sms-input-wrapper:focus-within {
    border-style: solid;
    background: white;
    box-shadow: 0 10px 25px -5px rgba(0, 51, 141, 0.1);
}

.sms-textarea {
    width: 100%;
    min-height: 180px;
    border: none;
    background: transparent;
    font-size: 16px;
    color: #334155;
    resize: none;
    outline: none;
    line-height: 1.6;
    margin-bottom: 20px;
    font-family: inherit;
}

.sms-textarea::placeholder {
    color: #94a3b8;
}

.btn-paste {
    background: #e0f2fe;
    color: #00338d;
    border: none;
    padding: 10px 18px;
    border-radius: 6px;
    font-size: var(--base-font, 14px);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-paste:hover {
    background: #bae6fd;
    transform: translateY(-1px);
}

.sms-example-card {
    background: #fff8eb;
    border-left: 4px solid #f59e0b;
    padding: 16px 20px;
    border-radius: 8px;
    margin-bottom: 32px;
}

.sms-example-title {
    font-weight: 800;
    color: #92400e;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.sms-example-text {
    font-size: var(--base-font, 14px);
    color: #b45309;
    font-style: italic;
    line-height: 1.4;
}

.cancel-action-btn {
    width: 100%;
    background: #00338d;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-size: var(--base-font, 14px);
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 6px rgba(0, 51, 141, 0.2);
}

.cancel-action-btn:hover {
    background: #002663;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px rgba(0, 51, 141, 0.3);
}

.btn-back-home {
    background: #00338d !important;
    color: white !important;
    text-decoration: none;
    padding: var(--base-font, 14px) 28px;
    border-radius: 4px;
    display: inline-block;
    font-weight: 600;
    transition: var(--transition);
}
/* --- MOBILE OPTIMIZATIONS --- */
@media (max-width: 600px) {
    .page-card { padding: 20px !important; }
    h1 { font-size: 22px !important; }
    h2 { font-size: 20px !important; }
    .hero-banner { padding: 30px 0; }
    .banner-text h1 { font-size: 24px; }
    .banner-text p { font-size: var(--base-font, 14px); }
    .credit-card-sim { height: 180px; padding: 15px; }
    .card-number-display { font-size: 16px; letter-spacing: 1px; }
    .v-input, .login-input { font-size: var(--base-font, 14px) !important; padding: 12px !important; }
    .blokir-submit-btn, .login-btn-blue, .cancel-action-btn { font-size: var(--base-font, 14px) !important; padding: var(--base-font, 14px) !important; }
    .logo-link { font-size: 22px; }
    .header-container { height: 50px; }
    .login-container { padding: 20px 15px; }
    .login-card { padding: 20px; }
}

