/* ======================
   RESET & BASE
====================== */

body {
    background-color: #000;
    color: white;
    font-family: 'Calibri', 'Arial', sans-serif;
    font-size: 20px;
}

body select,
body .form-select {
    color-scheme: dark;
}

body select option,
body select optgroup,
body .form-select option,
body .form-select optgroup {
    background: #091424;
    color: #f7fbff;
}

main[role="main"] .form-control::placeholder,
main[role="main"] textarea.form-control::placeholder,
main[role="main"] input.form-control::placeholder,
main[role="main"] input::placeholder,
main[role="main"] textarea::placeholder {
    color: rgba(255,255,255,.56);
    opacity: 1;
}

.auth-white .form-control::placeholder,
.auth-white textarea.form-control::placeholder,
.auth-white input.form-control::placeholder,
.auth-white input::placeholder,
.auth-white textarea::placeholder {
    color: rgba(15,23,42,.42);
}

main[role="main"] .form-control:focus,
main[role="main"] .form-select:focus {
    border-color: rgba(111, 149, 255, .55);
    box-shadow: 0 0 0 .16rem rgba(37, 140, 251, .18);
}

main[role="main"] .table {
    --bs-table-bg: transparent;
    --bs-table-color: rgba(255,255,255,.92);
    --bs-table-border-color: rgba(255,255,255,.12);
    --bs-table-striped-bg: rgba(255,255,255,.035);
    --bs-table-striped-color: rgba(255,255,255,.92);
    --bs-table-hover-bg: rgba(255,255,255,.06);
    --bs-table-hover-color: #fff;
    color: var(--bs-table-color);
}

main[role="main"] .table > :not(caption) > * > * {
    border-bottom-color: rgba(255,255,255,.12);
}

main[role="main"] .table thead th {
    color: #fff;
    background: rgba(255,255,255,.05);
    font-weight: 700;
}

main[role="main"] .table td {
    color: rgba(255,255,255,.88);
}

main[role="main"] .table tbody tr:hover > * {
    color: #fff;
}

a {
    text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Cinzel", serif;
    font-weight: 700;
}

.section-title {
    font-size: clamp(2rem, 3.2vw, 3.125rem);
    font-family: "Cinzel", serif;
    font-weight: 600;
    line-height: 1.04;
    text-wrap: balance;
    margin-bottom: .45rem;
}

.soft-shadow {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.8);
}

/* ======================
   BUTTONS
====================== */

.btn-image {
    display: inline-block;
    background-repeat: no-repeat;
    background-position: center;
    border: none;
    text-align: center;
    font-family: "Cinzel", serif;
    font-weight: 500;
    text-transform: uppercase;
    color: white;
    font-size: 16px;
    padding: 23px 0;
    width: 181px;
    transition: background-image 0.3s ease;
}

.btn-blue {
    background-image: url('../img/settings/btn-blue.png');
}
.btn-blue:hover {
    background-image: url('../img/settings/btn-blue-hover.png');
}

.btn-red {
    background-image: url('../img/settings/btn-red.png');
}
.btn-red:hover {
    background-image: url('../img/settings/btn-red-hover.png');
}

.btn-shadow {
    filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.8));
}

.btn-download {
    color: #fff;
    font-family: "Cinzel", serif;
    font-weight: 600;
    text-transform: uppercase;
    background: linear-gradient(90deg,rgba(4, 29, 73, 1) 0%, rgba(0, 13, 53, 1) 100%);
    padding: 10px 20px;
}

.btn-download:hover {
    background: linear-gradient(90deg,rgba(0, 13, 53, 1) 0%, rgba(4, 29, 73, 1) 100%);
}

main[role="main"] .btn:not(.btn-image) {
    transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease, background-color .12s ease, color .12s ease, filter .12s ease;
}

main[role="main"] .btn:not(.btn-image):hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 22px rgba(0,0,0,.26);
}

main[role="main"] .btn-primary:hover,
main[role="main"] .btn-success:hover,
main[role="main"] .btn-warning:hover,
main[role="main"] .btn-danger:hover {
    filter: brightness(1.08);
}

main[role="main"] .btn-outline-primary:hover {
    background: rgba(37,140,251,.15);
    border-color: rgba(122,184,255,.72);
    color: #fff;
}

main[role="main"] .btn-outline-secondary:hover {
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.28);
    color: #fff;
}

main[role="main"] .btn-outline-success:hover {
    background: rgba(25,135,84,.18);
    border-color: rgba(87,214,145,.60);
    color: #fff;
}

main[role="main"] .btn-outline-warning:hover {
    background: rgba(255,193,7,.18);
    border-color: rgba(255,214,102,.62);
    color: #fff;
}

main[role="main"] .btn-outline-danger:hover {
    background: rgba(220,53,69,.18);
    border-color: rgba(255,125,139,.62);
    color: #fff;
}

/* ======================
   NAVBAR
====================== */

.navbar {
    background-color: rgba(8, 7, 13, 0.85);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.navbar .navbar-nav {
    align-items: center;
}

.navbar .nav-link {
    font-family: Cinzel, serif;
    color: white;
    font-weight: 500;
    transition: color 0.3s;
}

.navbar .nav-link:hover {
    color: #ccc;
}

.navbar-brand img {
    max-height: 40px;
}

.navbar .dropdown-custom {
    position: relative;
}

.navbar .dropdown-custom .submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: rgba(8, 7, 13, 0.85);
    padding: 0;
    list-style: none;
    min-width: 150px;
    z-index: 999;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar .dropdown-custom .submenu li {
    width: 100%;
}

.navbar .dropdown-custom .submenu .nav-link {
    padding: 10px 15px;
    display: block;
    white-space: nowrap;
    font-size: 16px;
    font-family: "Cinzel", serif;
    font-weight: 500;
    color: white;
}

/* Ensure POST-form items (e.g., Logout button) fill the full dropdown width and hover matches links */
.navbar .dropdown-custom .submenu form {
    width: 100%;
    margin: 0;
}

.navbar .dropdown-custom .submenu button.nav-link {
    width: 100%;
    text-align: left;
    background: transparent;
    border: 0;
    cursor: pointer;
}

.navbar .dropdown-custom .submenu button.nav-link:focus {
    outline: none;
    box-shadow: none;
}

.navbar .dropdown-custom:hover .submenu {
    display: block;
}

.navbar .dropdown-custom .submenu .nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ccc;
}

@media (min-width: 992px) {
    .navbar .container {
        display: grid;
        align-items: center;
        grid-template-columns: auto minmax(0, 1fr) auto;
        column-gap: clamp(10px, 1.2vw, 24px);
        width: 100%;
        max-width: 1720px;
        padding-inline: clamp(12px, 1.1vw, 18px);
    }

    .navbar .navbar-collapse {
        justify-content: center;
        min-width: 0;
        padding-inline: clamp(4px, 0.8vw, 14px);
    }

    .navbar .main-nav-links,
    .navbar .nav-auth-links {
        flex-wrap: nowrap;
        align-items: center;
    }

    .navbar .main-nav-links {
        justify-content: center;
        gap: clamp(0.35rem, 0.78vw, 1rem) !important;
    }

    .navbar .nav-auth-links {
        justify-content: flex-end;
        gap: clamp(0.45rem, 0.9vw, 1rem) !important;
    }

    .navbar .main-nav-links > .nav-item,
    .navbar .nav-auth-links > .nav-item {
        flex: 0 0 auto;
    }

    .navbar .main-nav-links .nav-link,
    .navbar .nav-auth-links .nav-link {
        display: inline-flex;
        align-items: center;
        white-space: nowrap;
        padding-inline: 0.18rem;
        font-size: clamp(0.82rem, 0.2vw + 0.74rem, 0.98rem);
        line-height: 1.1;
    }

    .navbar .navbar-auth-slot {
        margin-left: clamp(6px, 1vw, 16px);
        flex: 0 0 auto;
    }

    .navbar .navbar-lang-slot {
        display: inline-flex;
        align-items: center;
        flex: 0 0 auto;
    }

    .navbar .dropdown-custom {
        position: relative;
    }

    .navbar .dropdown-custom::after {
        content: "";
        position: absolute;
        top: 100%;
        left: 50%;
        width: 220px;
        max-width: calc(100vw - 32px);
        height: 10px;
        transform: translateX(-50%);
    }

    .navbar .dropdown-custom .submenu {
        display: block;
        top: calc(100% + 6px);
        left: 50%;
        min-width: 190px;
        width: max-content;
        max-width: min(320px, calc(100vw - 32px));
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translate(-50%, 4px);
        transform-origin: top center;
        transition: opacity .16s ease, transform .16s ease, visibility .16s ease;
        z-index: 1105;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 12px 28px rgba(0, 0, 0, .18);
    }

    .navbar .dropdown-custom:hover .submenu,
    .navbar .dropdown-custom:focus-within .submenu {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translate(-50%, 0);
    }

    .navbar .dropdown-custom .submenu .nav-link,
    .navbar .dropdown-custom .submenu button.nav-link {
        transition: background-color .14s ease, color .14s ease;
    }

    .navbar .dropdown-custom .submenu .nav-link:hover,
    .navbar .dropdown-custom .submenu button.nav-link:hover {
        background-color: rgba(255, 255, 255, 0.08);
        color: #ddd;
    }
}
/* ======================
   HEADER STYLES
====================== */

.page-header {
    display: flex;
    align-items: center;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 65vh;
    padding: 40px 20px;
}
.page-header-content {
    position: absolute;
    top: 80%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    width: 100%;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.header-title {
    background-image: url('../img/settings/title-background.png');
    background-repeat: no-repeat;
    background-position: center;
    text-align: center;
    height: 142px;
    padding: 27px 0;
    text-shadow: 0 0 2px #fff, 0 0 12px #fff;
}

/* ======================
   SECTION BASE STYLES
====================== */

.video-section {
    position: relative;
    height: 72vh;
    overflow: hidden;
}
.video-section-cs {
    position: relative;
    height: 100vh;
    overflow: hidden;
}
.video-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    width: 100%;
    padding: 0 20px;
}

.small-section{
    align-items: center;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 40px 0;
}
.small-section .container {
    position: relative;
    z-index: 2;
}

.default-section {
    display: flex;
    align-items: center;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 45vh;
    padding: 60px 0;
}
.default-section .container {
    position: relative;
    z-index: 2;
}

.section-overlay::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.decorated-section {
    position: relative;
    overflow: hidden;
    border: 1px solid #fff;
}
.decorated-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 31px;
    height: 28px;
    background-image: url('../img/settings/arrow-top.png');
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 3;
}
.decorated-section::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 31px;
    height: 28px;
    background-image: url('../img/settings/arrow-bottom.png');
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 3;
}

/* ======================
   SECTION STYLES
====================== */

.content-left .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.content-left .container > div:first-child {
    flex: 1 1 50%;
    text-align: left;
}
.content-left .container > div:last-child {
    flex: 1 1 50%;
    text-align: center;
}
.content-center .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 100%;
}

/* ======================
   FOOTER
====================== */

.site-footer {
    background-color: rgba(8, 7, 13, 0.95);
    border-top: 1px solid rgba(255,255,255,.10);
    padding: 44px 0 24px;
    color: rgba(255,255,255,.82);
    font-size: 14px;
}

    .site-footer a {
        color: rgba(255,255,255,.82);
        transition: color .2s ease;
    }

        .site-footer a:hover {
            color: #fff;
        }

.footer-logo {
    max-width: 150px;
    height: auto;
    filter: drop-shadow(0 10px 14px rgba(0,0,0,.45));
}

.footer-title {
    font-family: "Cinzel", serif;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    margin-bottom: 12px;
}

.footer-text {
    font-size: 13px;
    line-height: 1.5;
    color: rgba(255,255,255,.70);
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-list li + li {
        margin-top: 8px;
    }

.footer-bottom {
    margin-top: 22px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,.10);
    color: rgba(255,255,255,.65);
    font-size: 12px;
}

.footer-mini {
    opacity: .9;
}



/* ======================
   RESPOSIVE STYLES
====================== */

@media (max-width: 768px) {
    .main-content {
        padding: 80px 20px;
    }
}
/* ======================
   SOCIAL ICONS (GLOBAL)
====================== */

.social-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.social-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,.22);
    border: 1px solid rgba(255,255,255,.14);
    transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
}

    .social-icon img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        display: block;
    }

    .social-icon:hover {
        transform: translateY(-2px);
        background: rgba(255,255,255,.06);
        box-shadow: 0 14px 26px rgba(0,0,0,.55);
    }

    .social-icon:focus-visible {
        outline: 2px solid rgba(255,255,255,.45);
        outline-offset: 4px;
    }

/* smaller icons for footer */
.footer-social-icons .social-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(255,255,255,.06);
}

/* ======================
   MOBILE NAV + FOOTER HARDENING
   ====================== */
@media (max-width: 991.98px) {
    .navbar {
        padding-block: .42rem;
    }

    .navbar .container {
        position: relative;
    }

    .navbar .navbar-brand img {
        max-height: 34px;
    }

    .navbar .navbar-toggler {
        border-color: rgba(255,255,255,.25);
        background: rgba(6, 11, 22, .78);
        box-shadow: none;
        z-index: 1090;
    }

    .navbar .navbar-collapse {
        position: absolute;
        top: calc(100% + 8px);
        left: 10px;
        right: 10px;
        z-index: 1085;
        border-radius: 14px;
        border: 1px solid rgba(255,255,255,.14);
        background: rgba(8, 12, 22, .97);
        backdrop-filter: blur(6px);
        -webkit-backdrop-filter: blur(6px);
        box-shadow: 0 16px 30px rgba(0,0,0,.45);
        padding: 12px;
        max-height: calc(100vh - 94px);
        overflow: auto;
    }

    .navbar .main-nav-links {
        align-items: stretch;
        gap: .18rem !important;
    }

    .navbar .main-nav-links .nav-item {
        width: 100%;
    }

    .navbar .main-nav-links .nav-link {
        display: block;
        white-space: normal;
        padding: .56rem .66rem;
        font-size: 1rem;
    }

    .navbar .dropdown-custom .submenu {
        position: static;
        display: block;
        background: transparent;
        border: 0;
        min-width: 0;
        margin: .08rem 0 .34rem;
        padding: 0 0 0 .48rem;
    }

    .navbar .dropdown-custom .submenu .nav-link {
        padding: .36rem .58rem;
        font-size: .93rem;
        color: rgba(255,255,255,.88);
    }

    .navbar .dropdown-custom .submenu .nav-link:hover {
        background: rgba(255,255,255,.08);
    }

    .navbar-auth-slot {
        display: none !important;
    }
}

@media (max-width: 767.98px) {
    body {
        font-size: 17px;
    }
    .site-footer {
        padding: 34px 0 18px;
        text-align: center;
    }

    .site-footer .row > [class*="col-"] {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-logo {
        max-width: 130px;
    }

    .footer-text {
        max-width: 560px;
    }

    .footer-social-icons {
        justify-content: center !important;
    }

    .footer-bottom {
        margin-top: 16px;
        padding-top: 12px;
        text-align: center;
        gap: 8px;
    }
}

@media (max-width: 575.98px) {
    body {
        font-size: 16px;
    }

    .site-footer {
        font-size: 13px;
    }

    .footer-title {
        margin-bottom: 8px;
    }

    .social-icon {
        width: 48px;
        height: 48px;
    }

    .footer-social-icons .social-icon {
        width: 40px;
        height: 40px;
    }
}


/* ======================
   MOBILE MENU POLISH
   ====================== */
@media (max-width: 991.98px) {
    .navbar .main-nav-links {
        width: 100%;
        align-items: stretch !important;
    }

    .navbar .main-nav-links {
        gap: .42rem !important;
    }

    .navbar .main-nav-links > .nav-item {
        margin: 0;
    }

    .navbar .main-nav-links > .nav-item:not(.dropdown-custom):not(.mobile-lang-switcher-item) > .nav-link {
        border: 1px solid rgba(255,255,255,.12);
        border-radius: 10px;
        background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
        box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
        font-weight: 700;
        letter-spacing: .2px;
    }

    .navbar .main-nav-links > .nav-item:not(.dropdown-custom):not(.mobile-lang-switcher-item) > .nav-link:hover {
        border-color: rgba(255,255,255,.24);
        background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.04));
    }

    .navbar .main-nav-links > .dropdown-custom > .nav-link {
        padding: .38rem .2rem .2rem;
        border: 0;
        background: transparent;
        color: rgba(255,255,255,.72);
        font-size: .79rem;
        font-weight: 700;
        letter-spacing: .9px;
        text-transform: uppercase;
    }

    .navbar .main-nav-links > .dropdown-custom > .nav-link::after {
        content: "";
        display: inline-block;
        width: 6px;
        height: 6px;
        margin-left: 8px;
        border-right: 1.5px solid rgba(255,255,255,.7);
        border-bottom: 1.5px solid rgba(255,255,255,.7);
        transform: rotate(45deg) translateY(-1px);
        opacity: .85;
    }

    .navbar .dropdown-custom .submenu {
        margin: 0 0 .46rem;
        padding: .10rem 0 .10rem .56rem;
        border-left: 2px solid rgba(120, 158, 255, .42);
    }

    .navbar .dropdown-custom .submenu li + li {
        margin-top: .25rem;
    }

    .navbar .dropdown-custom .submenu .nav-link,
    .navbar .dropdown-custom .submenu button.nav-link {
        border: 1px solid rgba(255,255,255,.10);
        border-radius: 9px;
        background: rgba(255,255,255,.04);
        padding: .44rem .58rem;
        font-size: .92rem;
        font-weight: 600;
    }

    .navbar .dropdown-custom .submenu .nav-link:hover,
    .navbar .dropdown-custom .submenu button.nav-link:hover {
        border-color: rgba(255,255,255,.2);
        background: rgba(255,255,255,.09);
    }

    .navbar .main-nav-links > .nav-item.d-lg-none.mt-3 {
        width: 100%;
        order: 100;
        margin-top: .52rem !important;
        padding-top: .58rem;
        border-top: 1px solid rgba(255,255,255,.12);
    }

    .navbar .main-nav-links > .nav-item.d-lg-none.mt-3 .nav-auth-links {
        width: 100%;
        gap: .42rem !important;
        align-items: stretch !important;
    }

    .navbar .main-nav-links > .nav-item.d-lg-none.mt-3 .nav-auth-links .nav-item {
        width: 100%;
    }

    .navbar .main-nav-links > .nav-item.d-lg-none.mt-3 .nav-auth-links .nav-link,
    .navbar .main-nav-links > .nav-item.d-lg-none.mt-3 .nav-auth-links button.nav-link {
        width: 100%;
        border: 1px solid rgba(255,255,255,.14);
        border-radius: 10px;
        background: rgba(27, 42, 78, .42);
        padding: .52rem .62rem;
        text-align: center;
        font-weight: 700;
    }
}

@media (max-width: 575.98px) {
    .navbar .main-nav-links > .dropdown-custom > .nav-link {
        font-size: .74rem;
    }

    .navbar .main-nav-links > .nav-item:not(.dropdown-custom):not(.mobile-lang-switcher-item) > .nav-link {
        padding: .52rem .60rem;
        font-size: .95rem;
    }

    .navbar .dropdown-custom .submenu {
        padding-left: .48rem;
    }
}

/* ======================
   PAGE READABILITY STANDARD (Header pages)
   ====================== */
:root {
    --aa-page-overlay-top: rgba(7, 10, 18, .28);
    --aa-page-overlay-mid: rgba(7, 10, 18, .42);
    --aa-page-overlay-bottom: rgba(7, 10, 18, .58);
    --aa-page-backdrop-blur: .75px;
}

.page-header,
.default-section,
.small-section,
.section-overlay {
    position: relative;
    isolation: isolate;
}

.page-header::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(180deg, var(--aa-page-overlay-top), var(--aa-page-overlay-mid) 45%, var(--aa-page-overlay-bottom));
    backdrop-filter: blur(var(--aa-page-backdrop-blur));
    -webkit-backdrop-filter: blur(var(--aa-page-backdrop-blur));
}

/* overrides old flat black overlay with the same standard */
.section-overlay::before {
    background: linear-gradient(180deg, var(--aa-page-overlay-top), var(--aa-page-overlay-mid) 45%, var(--aa-page-overlay-bottom));
    backdrop-filter: blur(var(--aa-page-backdrop-blur));
    -webkit-backdrop-filter: blur(var(--aa-page-backdrop-blur));
}

/* decorated sections use pseudo-elements for corner ornaments; keep readability via inset layer */
.section-overlay.decorated-section {
    box-shadow: inset 0 0 0 9999px rgba(7, 10, 18, .10);
}

.page-header .page-header-content,
.page-header > .container,
.default-section > .container,
.small-section > .container,
.section-overlay > .container {
    position: relative;
    z-index: 2;
}

.page-header .page-header-content {
    top: auto;
    left: auto;
    transform: none;
    margin: 0 auto;
    max-width: 1100px;
}

.page-header .page-header-content > p,
.default-section .container > p,
.small-section .container > p {
    max-width: 72ch;
    margin-inline: auto;
}

main[role="main"] .card {
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,.10);
    background: linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.03));
    box-shadow: 0 18px 36px rgba(0,0,0,.18);
}

main[role="main"] .card-header {
    padding: 1rem 1.15rem;
    border-bottom: 1px solid rgba(255,255,255,.10);
    background: rgba(255,255,255,.045);
}

main[role="main"] .card-body {
    padding: 1.15rem;
}

main[role="main"] .table-responsive {
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(255,255,255,.02);
    overflow: hidden;
}

main[role="main"] .accordion-item {
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(255,255,255,.03);
    overflow: hidden;
}

main[role="main"] .accordion-item + .accordion-item {
    margin-top: 12px;
}

main[role="main"] .accordion-button {
    background: rgba(255,255,255,.045);
    color: rgba(255,255,255,.92);
    font-weight: 700;
    box-shadow: none;
}

main[role="main"] .accordion-button:not(.collapsed) {
    background: rgba(255,255,255,.07);
    color: #fff;
}

main[role="main"] .accordion-button:focus {
    box-shadow: 0 0 0 .16rem rgba(37, 140, 251, .18);
}

main[role="main"] .accordion-button::after {
    filter: invert(1) opacity(.85);
}

main[role="main"] .accordion-body {
    color: rgba(255,255,255,.84);
}
/* ======================
   FACEBOOK LAUNCH MODAL
   ====================== */
.aa-social-modal .modal-dialog {
    max-width: 380px;
}

.aa-social-modal__content {
    position: relative;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(7,16,31,.94), rgba(6,12,24,.98));
    box-shadow: 0 22px 54px rgba(0,0,0,.45);
    overflow: hidden;
}

.aa-social-modal__content::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(220px 120px at 50% 0%, rgba(24,119,242,.22), transparent 70%),
        linear-gradient(180deg, rgba(255,255,255,.04), transparent 35%);
    pointer-events: none;
}

.aa-social-modal__close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    opacity: .9;
}

.aa-social-modal__body {
    position: relative;
    z-index: 1;
    padding: 32px 24px 24px;
    text-align: center;
}

.aa-social-modal__icon-wrap {
    width: 72px;
    height: 72px;
    margin: 0 auto 14px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(24,119,242,.14);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}

.aa-social-modal__icon {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.aa-social-modal__eyebrow {
    margin-bottom: 6px;
    color: rgba(173,210,255,.88);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.aa-social-modal__title {
    margin: 0;
    color: rgba(255,255,255,.96);
    font-size: 30px;
    line-height: 1.05;
}

.aa-social-modal__text {
    margin: 12px auto 0;
    max-width: 28ch;
    color: rgba(255,255,255,.78);
    font-size: 14px;
    line-height: 1.6;
}

.aa-social-modal__fb-embeds {
    margin-top: 16px;
    padding: 10px 10px 8px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(255,255,255,.03);
}

.aa-social-modal__fb-row {
    display: flex;
    justify-content: center;
    min-height: 35px;
}

.aa-social-modal__fb-row + .aa-social-modal__fb-row {
    margin-top: 8px;
}

.aa-social-modal__fb-frame {
    display: block;
    max-width: 100%;
    border: 0;
    background: transparent;
}

.aa-social-modal__actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 18px;
}

.aa-social-modal__btn {
    border-radius: 12px;
    font-family: "Cinzel", serif;
    font-weight: 700;
    letter-spacing: .04em;
    padding: 10px 16px;
}

.aa-social-modal__btn--primary {
    border: 1px solid rgba(73,154,255,.38);
    background: linear-gradient(180deg, rgba(24,119,242,.34), rgba(24,119,242,.18));
    color: #f5f9ff;
}

.aa-social-modal__btn--primary:hover {
    border-color: rgba(108,176,255,.52);
    background: linear-gradient(180deg, rgba(24,119,242,.44), rgba(24,119,242,.24));
    color: #fff;
}

.aa-social-modal__btn--ghost {
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.05);
    color: rgba(255,255,255,.88);
}

.aa-social-modal__btn--ghost:hover {
    background: rgba(255,255,255,.08);
    color: #fff;
}
.aa-social-modal__like-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 14px;
}

.aa-social-modal__btn--secondary {
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(255,255,255,.06);
    color: rgba(255,255,255,.92);
}

.aa-social-modal__btn--secondary:hover {
    background: rgba(255,255,255,.10);
    color: #fff;
}
