:root {
    --color-blue-custom: #1a55aa;
    --color-blue-3-custom: #79b3e66b;
    --bg-image: url("/images/bri/background/bg.png");
    --bg-primary: #1a55aa;
    --bg-secondary: #7182ff;
    --bg-accent: #dce6f2;
    --text-primary: #ffffff;
    --text-secondary: #bed0e5;
    --color-purple-custom: rgba(113, 130, 255, 1);
    --color-blue-2-custom: #79b3e6;
    --color-orange-custom: #e68402;
    --color-black-custom: #000000;
    --color-white-custom: #ffffff;
}

body {
    max-width: 480px;
    margin: 0 auto;
    position: relative;
    font-family: "Poppins", sans-serif;
    color: var(--text-primary);
}

.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 16px 0;
}

main {
    background-image: var(--bg-image);
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 100vh;
}

.main-content {
    padding-top: 20px;
    padding-bottom: 160px;
}

.text-small {
    font-size: 0.875rem;
}

.text-secondary-custom {
    color: var(--text-secondary);
}

a {
    color: var(--text-primary);
    font-weight: 600;
    text-decoration: none;
}

.bg-primary-custom {
    background-color: var(--bg-primary);
}

.btn-primary {
    background-color: var(--bg-primary) !important;
    border-color: var(--bg-primary) !important;
}

.btn-primary:hover {
    background-color: var(--bg-secondary) !important;
    border-color: var(--bg-secondary) !important;
}

.bg-secondary-custom {
    background-color: var(--bg-secondary);
}

.btn-base {
    background: #ffffff;
}

.btn-base:hover {
    background: var(--bg-primary);
}

.btn-white-custom {
    background-color: var(--color-white-custom) !important;
    color: var(--color-blue-custom) !important;
    font-weight: bold;
    border: none;
    padding: 10px 24px;
    border-radius: 20px;
}

.btn-white-custom:hover {
    background-color: var(--color-blue-3-custom) !important;
    color: var(--color-white-custom) !important;
}

.text-gold {
    color: #ffd700;
}
.text-silver {
    color: #c0c0c0;
}
.text-bronze {
    color: #cd7f32;
}

@media screen and (max-width: 360px) {
    img.navbar-logo {
        height: 35px;
        width: auto;
    }
}

.color-blue-custom {
    color: var(--color-blue-custom) !important;
}
