.dlc-topbar,
.dlc-brand-header,
.dlc-nav-shell,
.dlc-flash-overlay {
    font-family: "Segoe UI", Arial, sans-serif;
}

.dlc-topbar {
    background: #0b1f5f;
    color: #fff;
    font-size: 12px;
}

.dlc-topbar .container {
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.dlc-topbar-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px 16px;
}

.dlc-topbar a,
.dlc-topbar-clock {
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    white-space: nowrap;
}

.dlc-topbar a:hover {
    color: #ffd166;
    text-decoration: none;
}

.dlc-topbar-clock {
    font-weight: 700;
}

.dlc-brand-header {
    background: #fff;
    border-bottom: 1px solid #e7edf5;
}

.dlc-brand-header .container {
    min-height: 104px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.dlc-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #10214a;
    text-decoration: none;
    min-width: 0;
}

.dlc-brand:hover {
    color: #10214a;
    text-decoration: none;
}

.dlc-brand img {
    width: 72px;
    height: 72px;
    object-fit: contain;
    flex: 0 0 auto;
}

.dlc-brand span {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.dlc-brand strong {
    color: #0e217f;
    font-size: 28px;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: 0;
}

.dlc-brand em {
    color: #9b1c1c;
    font-size: 18px;
    font-style: normal;
    font-weight: 800;
    line-height: 1.25;
}

.dlc-brand small {
    color: #475467;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.35;
}

.dlc-header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
}

.dlc-action-btn {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 4px;
    padding: 9px 14px;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 8px 18px rgba(16, 24, 40, .1);
}

.dlc-action-btn:hover {
    color: #fff;
    text-decoration: none;
    transform: translateY(-1px);
}

.dlc-action-primary {
    background: #0e217f;
}

.dlc-action-secondary {
    background: #9b1c1c;
}

.dlc-nav-shell {
    background: #0b1f5f !important;
    box-shadow: 0 10px 20px rgba(15, 23, 42, .12);
    position: sticky;
    top: 0;
    z-index: 997;
}

.dlc-navbar {
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
}

.dlc-mobile-brand {
    display: none;
    color: #fff;
    font-weight: 900;
    text-decoration: none;
}

.dlc-mobile-brand:hover {
    color: #fff;
    text-decoration: none;
}

.dlc-navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    list-style: none;
}

.dlc-navbar li {
    position: relative;
}

.dlc-navbar > ul > li {
    padding: 0;
    white-space: nowrap;
}

.dlc-navbar a,
.dlc-navbar a:focus {
    min-height: 52px;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 0 12px;
    color: #eef4ff;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0;
}

.dlc-navbar > ul > li > a:before {
    display: none;
}

.dlc-navbar a:hover,
.dlc-navbar .active,
.dlc-navbar li:hover > a {
    color: #ffffff;
    background: rgba(255, 255, 255, .08);
    text-decoration: none;
}

.dlc-navbar .dropdown ul,
#header .dlc-navbar .dropdown ul,
.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 0;
    top: calc(100% + 12px);
    min-width: 230px;
    background: #fff !important;
    border: 1px solid #dfe7f1;
    border-radius: 6px;
    padding: 8px 0;
    box-shadow: 0 18px 34px rgba(15, 23, 42, .16);
    opacity: 0;
    visibility: hidden;
    transition: opacity .18s ease, top .18s ease, visibility .18s ease;
    z-index: 999;
}

.dlc-navbar .dropdown ul li {
    min-width: 230px;
    position: relative;
}

.dlc-navbar .dropdown ul a,
#header .dlc-navbar .dropdown ul a,
.navbar .dropdown ul a {
    min-height: 0;
    color: #1f2a44 !important;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 700;
    text-transform: none;
    justify-content: space-between;
}

.dlc-navbar .dropdown ul a:hover,
.dlc-navbar .dropdown ul li:hover > a,
#header .dlc-navbar .dropdown ul a:hover,
#header .dlc-navbar .dropdown ul li:hover > a,
.navbar .dropdown ul a:hover,
.navbar .dropdown ul li:hover > a {
    background: #f4f7fb !important;
    color: #0e217f !important;
}

.dlc-navbar .dropdown .dropdown ul {
    top: 0;
    left: 100%;
}

@media (min-width: 992px) {
    .dlc-navbar .dropdown:hover > ul,
    #header .dlc-navbar .dropdown:hover > ul,
    .navbar.dlc-navbar .dropdown:hover > ul {
        opacity: 1 !important;
        visibility: visible !important;
        top: 100% !important;
        pointer-events: auto;
    }

    .dlc-navbar .dropdown .dropdown:hover > ul,
    #header .dlc-navbar .dropdown .dropdown:hover > ul,
    .navbar.dlc-navbar .dropdown .dropdown:hover > ul {
        opacity: 1 !important;
        visibility: visible !important;
        top: 0 !important;
        left: 100% !important;
    }
}

.dlc-navbar .mobile-nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 4px;
    background: rgba(255, 255, 255, .08);
    color: #fff;
    font-size: 24px;
    cursor: pointer;
}

.dlc-flash-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(11, 22, 39, .72);
    backdrop-filter: blur(5px);
}

.dlc-flash-overlay.is-hidden {
    display: none;
}

.dlc-flash-card {
    position: relative;
    width: min(1010px, 100%);
    max-height: calc(100vh - 48px);
    overflow: visible;
    background: #fff;
    border: 1px solid rgba(255, 255, 255, .65);
    border-radius: 8px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, .34);
}

.dlc-flash-card img {
    width: 100%;
    max-height: calc(100vh - 48px);
    display: block;
    object-fit: contain;
    background: #fff;
    border-radius: 8px;
}

.dlc-flash-close {
    position: absolute;
    top: -18px;
    right: -18px;
    z-index: 2;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    background: #fff;
    color: #1f2937;
    box-shadow: 0 10px 24px rgba(15, 23, 42, .24);
    cursor: pointer;
}

.dlc-flash-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 52px 30px 24px;
    color: #fff;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0) 0%, rgba(15, 23, 42, .82) 70%);
}

.dlc-flash-caption span,
.dlc-flash-message span {
    display: block;
    color: #ffd166;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.dlc-flash-caption strong {
    display: block;
    color: #fff;
    font-size: 28px;
    line-height: 1.2;
}

.dlc-flash-message {
    padding: 46px;
}

.dlc-flash-message h2 {
    color: #0e217f;
    font-size: 30px;
    font-weight: 900;
    margin: 8px 0 10px;
}

.dlc-flash-message p {
    color: #334155;
    font-size: 17px;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 1199px) {
    .dlc-navbar a,
    .dlc-navbar a:focus {
        padding: 0 8px;
        font-size: 12px;
    }
}

@media (max-width: 991px) {
    .dlc-topbar .container {
        justify-content: center;
        flex-direction: column;
        gap: 6px;
        padding-top: 8px;
        padding-bottom: 8px;
    }

    .dlc-topbar-links {
        justify-content: center;
    }

    .dlc-brand-header .container {
        min-height: 92px;
        gap: 12px;
    }

    .dlc-brand img {
        width: 58px;
        height: 58px;
    }

    .dlc-brand strong {
        font-size: 22px;
    }

    .dlc-brand em {
        font-size: 15px;
    }

    .dlc-brand small {
        font-size: 11px;
    }

    .dlc-header-actions {
        display: none;
    }

    .dlc-navbar {
        min-height: 50px;
        padding: 0 12px;
    }

    .dlc-mobile-brand,
    .dlc-navbar .mobile-nav-toggle {
        display: flex;
    }

    .dlc-navbar > ul {
        display: none;
    }

    .dlc-navbar.navbar-mobile {
        position: fixed;
        inset: 0;
        z-index: 1999;
        width: 100%;
        height: 100%;
        align-items: flex-start;
        background: rgba(7, 27, 58, .78);
        padding: 72px 16px 16px;
    }

    .dlc-navbar.navbar-mobile .mobile-nav-toggle {
        position: fixed;
        top: 15px;
        right: 16px;
        z-index: 2001;
    }

    .dlc-navbar.navbar-mobile > ul {
        display: block;
        position: static;
        width: 100%;
        max-height: calc(100vh - 96px);
        overflow-y: auto;
        background: #fff;
        border-radius: 8px;
        padding: 8px;
        box-shadow: 0 18px 38px rgba(0, 0, 0, .22);
    }

    .dlc-navbar.navbar-mobile > ul > li {
        white-space: normal;
        border-bottom: 1px solid #eef2f7;
    }

    .dlc-navbar.navbar-mobile a,
    .dlc-navbar.navbar-mobile a:focus {
        min-height: 44px;
        color: #1f2a44;
        padding: 10px 12px;
        font-size: 14px;
        text-transform: none;
        justify-content: space-between;
    }

    .dlc-navbar.navbar-mobile a:hover,
    .dlc-navbar.navbar-mobile .active {
        color: #0e217f;
    }

    .dlc-navbar.navbar-mobile .dropdown ul,
    .dlc-navbar.navbar-mobile .dropdown .dropdown ul {
        position: static;
        display: none;
        opacity: 1;
        visibility: visible;
        min-width: 0;
        width: 100%;
        border: 0;
        border-left: 3px solid #d9e4f4;
        border-radius: 0;
        box-shadow: none;
        margin: 0 0 8px 10px;
        padding: 0;
        background: #f8fafc;
    }

    .dlc-navbar.navbar-mobile .dropdown > .dropdown-active {
        display: block;
    }

    .dlc-navbar.navbar-mobile .dropdown ul a {
        font-size: 13px;
        padding-left: 14px;
    }

    .dlc-navbar.navbar-mobile .dropdown.open > a {
        color: #0e217f;
        background: #eef4ff;
        border-radius: 6px;
    }

    .dlc-flash-card {
        max-width: 94vw;
    }

    .dlc-flash-caption {
        padding: 46px 20px 18px;
    }

    .dlc-flash-caption strong {
        font-size: 22px;
    }
}

@media (max-width: 575px) {
    .dlc-topbar {
        font-size: 11px;
    }

    .dlc-topbar-links {
        gap: 4px 10px;
    }

    .dlc-brand-header .container {
        align-items: flex-start;
        padding-top: 12px;
        padding-bottom: 12px;
    }

    .dlc-brand {
        align-items: flex-start;
        gap: 10px;
    }

    .dlc-brand img {
        width: 50px;
        height: 50px;
    }

    .dlc-brand strong {
        font-size: 18px;
    }

    .dlc-brand em {
        font-size: 13px;
    }

    .dlc-brand small {
        font-size: 10px;
    }

    .dlc-flash-overlay {
        padding: 14px;
    }

    .dlc-flash-close {
        top: 8px;
        right: 8px;
        width: 38px;
        height: 38px;
    }

    .dlc-flash-caption {
        position: static;
        padding: 14px;
        background: #071b3a;
    }

    .dlc-flash-caption strong {
        font-size: 18px;
    }

    .dlc-flash-message {
        padding: 30px 20px;
    }

    .dlc-flash-message h2 {
        font-size: 23px;
    }

    .dlc-flash-message p {
        font-size: 15px;
    }
}
