/* ===== BASE ===== */ 
body {
    background: url('/images/bg.jpg') no-repeat center center fixed;
    background-size: cover;
    color: #e6e9f2;
    font-family: Arial, sans-serif;
    min-height: 100vh;
    position: relative;
}
body::before {
    content: "";
    position: fixed;
    inset: 0;
    background:
        linear-gradient(rgba(3, 7, 16, 0.78), rgba(3, 7, 16, 0.86)),
        radial-gradient(circle at center, rgba(255,180,80,0.08), transparent 35%);
    z-index: -1;
}

/* ===== CARD ===== */
.card {
    background: rgba(10, 16, 30, 0.82);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 0 25px rgba(0,0,0,0.45);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.05);
}

/* ===== SECTION ===== */
.section {
    margin: 40px auto;
    max-width: 900px;
}

/* ===== RATES ===== */
.rates-card {
    padding: 28px;
}

.rates-card h3 {
    margin-bottom: 20px;
    font-size: 22px;
    color: #f6c86f;
}

/* GRID */
.rates-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(220px, 1fr));
    gap: 14px;
}

/* ITEM */
.rate-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
    border-radius: 12px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    transition: 0.2s;
}

.rate-item:hover {
    background: rgba(255,255,255,0.06);
}

/* TEXT */
.rate-item span {
    color: #bfc7d9;
    font-weight: 500;
}

.rate-item b {
    color: #f6c86f;
    font-weight: 800;
}

/* MOBILE */
@media (max-width: 700px) {
    .rates-grid {
        grid-template-columns: 1fr;
    }
}
/* ===== NAVBAR ===== */
.nav,
.navbar {
    background: rgba(8, 12, 24, 0.88);
    border: 1px solid rgba(255, 200, 90, 0.12);
    border-radius: 14px;
    box-shadow: 0 0 20px rgba(0,0,0,0.35);
}

.nav-left a {
    margin-right: 15px;
    text-decoration: none;
    color: #cfd6e6;
    font-weight: 500;
}

.nav-left a:hover {
    color: #f6c86f;
}

.nav-right a {
    color: #f6c86f;
    text-decoration: none;
}

/* ===== HERO ===== */
.hero {
    text-align: center;
    margin-top: 40px;
}

.hero h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.hero p {
    color: #9aa3b8;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
}

.btn-primary {
    background: #f6c86f;
    color: #000;
}

.btn-secondary {
    background: #1a2238;
    color: #fff;
}
/* ===== NAVBAR CLEAN ===== */
.topbar {
    background: #0d1323;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.wrap.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 30px;
}

.brand {
    font-weight: bold;
    font-size: 18px;
    color: #f6c86f;
    text-decoration: none;
}

/* NAV FLEX */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-left: 30px;
}

/* LEFT LINKS */
.nav-left a {
    margin-right: 15px;
    text-decoration: none;
    color: #cfd6e6;
    font-weight: 500;
}

.nav-left a:hover {
    color: #f6c86f;
}

/* RIGHT */
.nav-right a {
    color: #f6c86f;
    text-decoration: none;
}
/* ===== L2DAMAGE STYLE NAVBAR ===== */
.topbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 14px 0;
    background: linear-gradient(180deg, rgba(7,10,19,0.96), rgba(10,14,24,0.88));
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255, 215, 140, 0.10);
    box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}

.nav-shell {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.brand {
    flex: 0 0 auto;
    min-width: 150px;
    text-decoration: none;
    color: #f6c86f;
    font-size: 34px;
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-shadow:
        0 0 8px rgba(246, 200, 111, 0.25),
        0 0 18px rgba(246, 200, 111, 0.12);
}

.navbar {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-width: 0;
    padding: 10px 16px;
    border-radius: 14px;
    background:
        linear-gradient(180deg, rgba(38,30,24,0.80), rgba(18,15,13,0.78));
    border: 1px solid rgba(255, 214, 153, 0.14);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.05),
        0 8px 25px rgba(0,0,0,0.35);
}

.nav-left,
.nav-right {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.nav-left a,
.nav-right a,
.nav-right span {
    position: relative;
    display: inline-flex;
    align-items: center;
    height: 42px;
    padding: 0 14px;
    border-radius: 10px;
    text-decoration: none;
    color: #f2e7d2;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.2px;
    transition: all 0.18s ease;
    white-space: nowrap;
}

.nav-left a:hover,
.nav-right a:hover {
    color: #ffd27a;
    background: rgba(255, 211, 122, 0.06);
    box-shadow: inset 0 0 0 1px rgba(255, 211, 122, 0.10);
}

.nav-left a::after {
    content: "";
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 7px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, #f6c86f, #ffefb3);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.18s ease;
    opacity: 0.9;
}

.nav-left a:hover::after {
    transform: scaleX(1);
}

.nav-right .btn,
.nav-right a.btn,
.nav-right a[href="/logout.php"] {
    background: linear-gradient(180deg, #2c304a, #1b2036);
    border: 1px solid rgba(255,255,255,0.08);
    color: #fff;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.06),
        0 4px 16px rgba(0,0,0,0.25);
}

.nav-right .btn:hover,
.nav-right a.btn:hover,
.nav-right a[href="/logout.php"]:hover {
    background: linear-gradient(180deg, #34395a, #222845);
    color: #fff2c9;
}

.nav-right span {
    color: #d7dde9;
    opacity: 0.95;
}

@media (max-width: 900px) {
    .nav-shell {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .brand {
        text-align: center;
    }

    .navbar {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .nav-left,
    .nav-right {
        justify-content: center;
    }
}
