
/* =====================
   VARIABLES
===================== */
:root {
    --primary-color: #3f8274;
    --accent-orange: #D2801D;
    --text-color: #333;
    --gray-color: #666;
    --bg-light: #f9fbfb;
}

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

@font-face {
    font-family: 'Be Vietnam Pro';
    src: url('../fonts/Be_Vietnam_Pro/BeVietnamPro-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Be Vietnam Pro';
    src: url('../fonts/Be_Vietnam_Pro/BeVietnamPro-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: 'Be Vietnam Pro', sans-serif;
    color: var(--text-color);
    line-height: 1.5;
    overflow-x: hidden;
}

a {
    text-decoration: none !important;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =====================
   FALLBACK (INDEX)
===================== */
.lotus-fallback {
    margin: 56px auto 72px;
    max-width: 860px;
    padding: 44px 40px;
    border-radius: 22px;
    text-align: center;
    background: linear-gradient(180deg, #ffffff 0%, #f6f9f9 100%);
    border: 1px solid #dceae7;
    box-shadow: 0 18px 42px rgba(15, 27, 45, 0.1);
}

.lotus-fallback-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 14px;
    border-radius: 999px;
    margin-bottom: 18px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.3px;
    background: rgba(63, 130, 116, 0.12);
    color: var(--primary-color);
}

.lotus-fallback h1 {
    font-size: 44px;
    line-height: 1.15;
    margin-bottom: 14px;
    color: #1d2b3f;
}

.lotus-fallback p {
    max-width: 640px;
    margin: 0 auto;
    font-size: 16px;
    color: #5c6b7d;
}

.lotus-fallback-actions {
    margin-top: 28px;
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.lotus-fallback-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
    padding: 12px 20px;
    border-radius: 10px;
    border: 1px solid transparent;
    font-size: 15px;
    font-weight: 700;
    transition: all 0.25s ease;
}

.lotus-fallback-btn-primary {
    color: #fff !important;
    background: var(--primary-color);
    box-shadow: 0 8px 22px rgba(63, 130, 116, 0.25);
}

.lotus-fallback-btn-primary:hover {
    transform: translateY(-2px);
    background: #356f64;
}

.lotus-fallback-btn-outline {
    border-color: var(--gray-color);
    color: var(--text-color);
    background: var(--bg-light);
}

.lotus-fallback-btn-outline:hover {
    background: rgba(200, 200, 200, 0.18);
}

.lotus-fallback-search {
    margin-top: 30px;
}

.lotus-fallback .search-form {
    max-width: 640px;
    margin: 0 auto;
    display: flex;
    gap: 10px;
    align-items: center;
    background: #fff;
    border: 1px solid #d7e6e1;
    border-radius: 12px;
    padding: 8px;
}

.lotus-fallback .search-form label {
    flex: 1;
    margin: 0;
}

.lotus-fallback .search-field {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    padding: 0 8px;
    font-size: 15px;
    color: #1f2937;
}

.lotus-fallback .search-submit {
    border: 0;
    cursor: pointer;
    border-radius: 9px;
    padding: 11px 18px;
    font-weight: 700;
    background: #0f1b2d;
    color: #fff;
    transition: 0.25s ease;
}

.lotus-fallback .search-submit:hover {
    background: #172945;
}

@media (max-width: 768px) {
    .lotus-fallback {
        margin: 32px auto 50px;
        padding: 32px 20px;
        border-radius: 18px;
    }

    .lotus-fallback h1 {
        font-size: 32px;
    }

    .lotus-fallback p {
        font-size: 14px;
    }

    .lotus-fallback .search-form {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        padding: 10px;
    }

    .lotus-fallback .search-submit {
        width: 100%;
    }
}
