* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, Arial;
}
body {
    background: #f4f6f8;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
@media (max-width: 400px) {
    .socials {
        gap: 0.75rem;
    }
}
.bottom-nav {
    position: sticky;
    bottom: 0;
    display: flex;
    justify-content: space-around;
    background: white;
    border-top: 1px solid #eaeaea;
    padding: 0.5rem 0;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.05);
}
.bottom-nav a {
    text-decoration: none;
    color: #666;
    font-size: 0.85rem;
    text-align: center;
    flex: 1;
}
.bottom-nav a.active {
    color: #111;
    font-weight: 600;
}
@media (max-width: 600px) {
    .card {
        max-width: 100%;
        border-radius: 12px;
        margin-left: 0;
        margin-right: 0;
    }
}
.card {
    background: white;
    border-radius: 14px;
    padding: 1rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    margin-bottom: 1rem;

    /* TABLE-LIKE DEFAULT (desktop feel) max-width: 520px; */
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;

    text-align: center;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    background: #f4f6f8;
    min-height: 100vh;
    font-family: Arial, sans-serif;
    padding-top: 72px;
}
.app-shell {
    width: 100%;
}
.containerV {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    min-height: 100vh;
    background: white;
}
.nb-root {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
}
.nb-inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;

    height: 72px;
    padding: 0 24px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    position: relative; /* IMPORTANT FIX */
}
.nb-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}
.nb-logo-mark {
    width: 38px;
    height: 38px;
    background: #0A66C2;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.nb-logo-text {
    font-size: 22px;
    font-weight: 700;
    color: #0A66C2;
}
.nb-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}
.nb-btn {
    padding: 10px 24px !important;
    border-radius: 24px !important;
    font-size: 16px !important;
    font-weight: 600 !important;

    border: 1px solid #0A66C2 !important;
    background: #fff !important;
    color: #0A66C2 !important;

    cursor: pointer;
    white-space: nowrap;

    transition: 0.15s ease;
}
.nb-btn:hover {
    background: #eef3f8 !important;
    border-color: #004182 !important;
    color: #004182 !important;
}
.nb-btn.primary {
    background: #0A66C2 !important;
    color: #fff !important;
}
.nb-hamburger {
    display: none;
    font-size: 30px;
    background: none;
    border: none;
    cursor: pointer;
    color: #333;
    z-index: 1100;
}
@media (max-width: 600px) {
    .nb-hamburger {
        display: block !important;
    }
    .nb-actions {
        display: none;
        position: absolute;
        top: 72px;
        right: 12px;

        background: white;
        width: 200px;

        padding: 12px;
        border: 1px solid #e0e0e0;
        border-radius: 12px;

        flex-direction: column;
        box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    }
    .nb-actions.open {
        display: flex;
    }
    .nb-actions .nb-btn {
        width: 100%;
        text-align: center;
    }
}
.page-title {
  margin: 0;
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0a1628, #3b82f6);
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  font-family: Arial, Helvetica, sans-serif;
  box-sizing: border-box;
}
