@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@600;700&family=Inter:wght@400;500;600&display=swap');

:root {
    --background: #050505;
    --background-soft: #0a0b10;
    --surface: #10121a;
    --border: rgba(255, 255, 255, 0.10);
    --text: #ffffff;
    --muted: #9ca0ad;
    --blue: #1763ff;
    --blue-light: #2e7bff;
    --yellow: #ffe500;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: var(--background);
    color: var(--text);
    font-family: "Inter", sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(5, 5, 5, 0.96);
    border-bottom: 1px solid rgba(255, 229, 0, 0.35);
    backdrop-filter: blur(14px);
}

.header-line {
    height: 4px;
    background: linear-gradient(90deg, var(--blue) 0 68%, var(--yellow) 68% 100%);
}

.header-container {
    width: min(calc(100% - 40px), var(--container));
    min-height: 84px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 28px;
}

.site-logo {
    flex: 0 0 auto;
}

.site-logo img,
.footer-logo img {
    width: 210px;
    height: auto;
}

.main-navigation {
    display: flex;
    align-items: center;
    gap: 27px;
    margin-left: auto;
}

.main-navigation a,
.footer-navigation a {
    font-family: "Rajdhani", sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.055em;
    text-transform: uppercase;
}

.main-navigation a {
    position: relative;
    color: #d8d9df;
    transition: color 0.22s ease;
}

.main-navigation a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: -10px;
    height: 2px;
    background: var(--yellow);
    transition: right 0.22s ease;
}

.main-navigation a:hover {
    color: #ffffff;
}

.main-navigation a:hover::after {
    right: 0;
}

.header-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-button {
    min-width: 92px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    border-radius: 8px;
    font-family: "Rajdhani", sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.045em;
    text-transform: uppercase;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.header-button:hover {
    transform: translateY(-2px);
}

.login-button {
    background: linear-gradient(135deg, #124dd9, var(--blue-light));
    box-shadow: 0 9px 25px rgba(23, 99, 255, 0.28);
}

.register-button {
    color: #080808;
    background: linear-gradient(135deg, var(--yellow), #ffc928);
    box-shadow: 0 9px 25px rgba(255, 229, 0, 0.20);
}

.menu-button {
    display: none;
    width: 44px;
    height: 44px;
    margin-left: auto;
    padding: 10px;
    border: 1px solid var(--border);
    border-radius: 7px;
    background: var(--surface);
    cursor: pointer;
}

.menu-button span {
    display: block;
    width: 100%;
    height: 2px;
    margin: 5px 0;
    background: #ffffff;
}

main {
    flex: 1;
}

.banner-section {
    width: 100%;
    background: #000000;
    overflow: hidden;
}

.banner-section a {
    display: block;
    width: 100%;
}

.banner-section img {
    width: 100%;
    height: auto;
    aspect-ratio: 1920 / 640;
    object-fit: cover;
    object-position: center;
}

.site-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background:
        radial-gradient(circle at 50% 0%, rgba(23, 99, 255, 0.10), transparent 42%),
        var(--background-soft);
}

.footer-container {
    width: min(calc(100% - 40px), var(--container));
    margin: 0 auto;
    padding: 48px 0 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-description {
    max-width: 620px;
    margin: 20px auto 25px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.75;
}

.footer-navigation {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px 28px;
}

.footer-navigation a {
    color: #d5d7df;
    transition: color 0.22s ease;
}

.footer-navigation a:hover {
    color: var(--yellow);
}

.footer-bottom {
    border-top: 1px solid var(--border);
}

.footer-bottom-container {
    width: min(calc(100% - 40px), var(--container));
    min-height: 58px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: #777b87;
    font-size: 13px;
}

@media (max-width: 1024px) {
    .header-container {
        min-height: 74px;
    }

    .site-logo img {
        width: 185px;
    }

    .menu-button {
        display: block;
    }

    .main-navigation {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        display: none;
        margin: 0;
        padding: 18px 20px 22px;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: rgba(5, 5, 5, 0.99);
        border-top: 1px solid var(--border);
        border-bottom: 1px solid rgba(255, 229, 0, 0.35);
    }

    .main-navigation.is-open {
        display: flex;
    }

    .main-navigation a {
        padding: 13px 4px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    }

    .main-navigation a:last-child {
        border-bottom: 0;
    }

    .main-navigation a::after {
        display: none;
    }
}

@media (max-width: 680px) {
    .header-container {
        width: min(calc(100% - 24px), var(--container));
        gap: 12px;
    }

    .site-logo img {
        width: 155px;
    }

    .header-buttons {
        display: none;
    }

    .banner-section img {
        min-height: 210px;
        object-fit: cover;
    }

    .footer-container {
        width: min(calc(100% - 28px), var(--container));
        padding: 38px 0 32px;
    }

    .footer-bottom-container {
        width: min(calc(100% - 28px), var(--container));
        padding: 16px 0;
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }
}

/* =====================================================
   PUMA33 CONTENT SECTION
===================================================== */

.content {
    --content-bg: #050609;
    --panel-bg: #090d19;
    --panel-soft: #0d1224;
    --panel-hover: #111936;
    --blue: #176cff;
    --blue-light: #4d91ff;
    --yellow: #ffe100;
    --text: #f5f7ff;
    --text-soft: #b7bfd3;
    --border: rgba(78, 119, 255, 0.22);

    position: relative;
    width: 100%;
    max-width: 1240px;
    margin: 70px auto;
    padding: 54px 58px;
    overflow: hidden;
    color: var(--text);
    background:
        linear-gradient(
            145deg,
            rgba(18, 28, 65, 0.92) 0%,
            rgba(7, 10, 20, 0.98) 42%,
            rgba(4, 5, 9, 1) 100%
        );
    border: 1px solid var(--border);
    border-top: 3px solid var(--blue);
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
    box-sizing: border-box;
}

/* Decorative yellow corner */
.content::before {
    content: "";
    position: absolute;
    top: -3px;
    right: 0;
    width: 180px;
    height: 4px;
    background: var(--yellow);
    box-shadow: 0 0 22px rgba(255, 225, 0, 0.45);
}

/* Subtle background glow */
.content::after {
    content: "";
    position: absolute;
    top: 180px;
    right: -220px;
    width: 430px;
    height: 430px;
    border-radius: 50%;
    pointer-events: none;
    background: rgba(23, 108, 255, 0.09);
    filter: blur(70px);
}

/* Keep content above decorative layer */
.content > * {
    position: relative;
    z-index: 1;
}

/* =====================================================
   MAIN HEADING
===================================================== */

.content h1 {
    max-width: 1050px;
    margin: 0 0 28px;
    color: #ffffff;
    font-size: clamp(32px, 4vw, 53px);
    line-height: 1.14;
    font-weight: 800;
    letter-spacing: -1.8px;
    text-wrap: balance;
}

.content h1::before {
    content: "PUMA33 • DUNIA TERRALAND";
    display: block;
    width: fit-content;
    margin-bottom: 18px;
    padding: 8px 13px;
    color: var(--yellow);
    background: rgba(255, 225, 0, 0.07);
    border-left: 3px solid var(--yellow);
    font-size: 12px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 2.2px;
}

/* =====================================================
   PARAGRAPHS
===================================================== */

.content p {
    margin: 0 0 22px;
    color: var(--text-soft);
    font-size: 18px;
    line-height: 1.85;
    font-weight: 400;
}

.content h1 + p {
    max-width: 1080px;
    color: #dce3f8;
    font-size: 19px;
    line-height: 1.8;
}

/* =====================================================
   SECTION HEADINGS
===================================================== */

.content h2 {
    position: relative;
    margin: 58px 0 24px;
    padding: 20px 24px 20px 28px;
    color: #ffffff;
    background:
        linear-gradient(
            90deg,
            rgba(28, 55, 145, 0.55),
            rgba(12, 18, 40, 0.85) 70%,
            rgba(8, 11, 20, 0.5)
        );
    border: 1px solid rgba(67, 103, 221, 0.24);
    border-left: 4px solid var(--blue);
    font-size: clamp(25px, 3vw, 34px);
    line-height: 1.25;
    font-weight: 750;
    letter-spacing: -0.7px;
}

.content h2::after {
    content: "";
    position: absolute;
    top: -1px;
    right: 0;
    width: 74px;
    height: 3px;
    background: var(--yellow);
}

/* =====================================================
   LIST
===================================================== */

.content ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 13px;
    margin: 28px 0;
    padding: 0;
    list-style: none;
}

.content ul li {
    position: relative;
    min-height: 64px;
    padding: 18px 20px 18px 50px;
    color: #d9e1f5;
    background:
        linear-gradient(
            135deg,
            rgba(15, 23, 51, 0.96),
            rgba(8, 12, 25, 0.96)
        );
    border: 1px solid rgba(64, 100, 207, 0.2);
    font-size: 17px;
    line-height: 1.65;
    box-sizing: border-box;
    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        background 0.25s ease;
}

.content ul li::before {
    content: "";
    position: absolute;
    top: 22px;
    left: 20px;
    width: 13px;
    height: 13px;
    background: var(--blue);
    border: 3px solid rgba(75, 141, 255, 0.2);
    box-shadow: 0 0 14px rgba(23, 108, 255, 0.55);
    transform: rotate(45deg);
}

.content ul li:hover {
    transform: translateY(-3px);
    background: var(--panel-hover);
    border-color: rgba(54, 118, 255, 0.55);
}

/* =====================================================
   CONTENT TABLE
===================================================== */

.content .content-table {
    width: 100%;
    margin: 30px 0 40px;
    overflow: hidden;
    border-collapse: separate;
    border-spacing: 0;
    color: var(--text);
    background: #080b14;
    border: 1px solid rgba(57, 91, 190, 0.28);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
}

.content .content-table th,
.content .content-table td {
    padding: 17px 20px;
    text-align: left;
    vertical-align: middle;
    border-right: 1px solid rgba(61, 89, 164, 0.17);
    border-bottom: 1px solid rgba(61, 89, 164, 0.17);
    font-size: 16px;
    line-height: 1.55;
}

.content .content-table th:last-child,
.content .content-table td:last-child {
    border-right: 0;
}

.content .content-table tbody tr:last-child td {
    border-bottom: 0;
}

.content .content-table thead th {
    color: #ffffff;
    background:
        linear-gradient(
            135deg,
            #123eac 0%,
            #0b245f 55%,
            #09152f 100%
        );
    border-bottom: 2px solid var(--yellow);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.content .content-table tbody td {
    color: #c9d1e6;
    background: rgba(8, 12, 24, 0.95);
}

.content .content-table tbody tr:nth-child(even) td {
    background: rgba(13, 19, 39, 0.96);
}

.content .content-table tbody tr:hover td {
    color: #ffffff;
    background: rgba(22, 46, 105, 0.55);
}

.content .content-table tbody td:first-child {
    color: #ffffff;
    font-weight: 700;
}

/* =====================================================
   FAQ AREA
   Applied to h3 headings near the bottom
===================================================== */

.content h3 {
    position: relative;
    margin: 18px 0 0;
    padding: 20px 58px 20px 22px;
    color: #ffffff;
    background: linear-gradient(
        90deg,
        rgba(17, 27, 61, 0.98),
        rgba(8, 12, 25, 0.98)
    );
    border: 1px solid rgba(72, 106, 201, 0.23);
    border-left: 3px solid var(--yellow);
    font-size: 19px;
    line-height: 1.45;
    font-weight: 700;
}

.content h3::after {
    content: "+";
    position: absolute;
    top: 50%;
    right: 21px;
    width: 28px;
    height: 28px;
    color: var(--yellow);
    background: rgba(255, 225, 0, 0.08);
    border: 1px solid rgba(255, 225, 0, 0.22);
    font-size: 21px;
    line-height: 26px;
    font-weight: 500;
    text-align: center;
    transform: translateY(-50%);
}

.content h3 + p {
    margin: 0 0 12px;
    padding: 19px 22px 21px;
    color: #bfc8df;
    background: rgba(7, 10, 20, 0.85);
    border-right: 1px solid rgba(72, 106, 201, 0.17);
    border-bottom: 1px solid rgba(72, 106, 201, 0.17);
    border-left: 1px solid rgba(72, 106, 201, 0.17);
    font-size: 16px;
    line-height: 1.75;
}

/* =====================================================
   LINK STYLING
===================================================== */

.content a {
    color: var(--yellow);
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 225, 0, 0.45);
    transition:
        color 0.2s ease,
        border-color 0.2s ease;
}

.content a:hover {
    color: #ffffff;
    border-color: var(--blue-light);
}

/* =====================================================
   RESPONSIVE TABLET
===================================================== */

@media (max-width: 1024px) {
    .content {
        width: calc(100% - 36px);
        margin: 45px auto;
        padding: 42px 34px;
    }

    .content h1 {
        letter-spacing: -1.2px;
    }

    .content ul {
        grid-template-columns: 1fr;
    }
}

/* =====================================================
   RESPONSIVE MOBILE
===================================================== */

@media (max-width: 700px) {
    .content {
        width: calc(100% - 24px);
        margin: 28px auto;
        padding: 30px 18px;
        border-top-width: 2px;
    }

    .content::before {
        width: 90px;
    }

    .content h1 {
        margin-bottom: 20px;
        font-size: 30px;
        line-height: 1.2;
        letter-spacing: -0.8px;
    }

    .content h1::before {
        margin-bottom: 14px;
        padding: 7px 10px;
        font-size: 10px;
        letter-spacing: 1.5px;
    }

    .content p,
    .content h1 + p {
        font-size: 17px;
        line-height: 1.75;
    }

    .content h2 {
        margin-top: 42px;
        padding: 17px 18px;
        font-size: 24px;
    }

    .content ul li {
        padding: 16px 16px 16px 45px;
        font-size: 16px;
    }

    .content ul li::before {
        left: 17px;
    }

    /* Scrollable table on mobile */
    .content .content-table {
        display: block;
        width: 100%;
        overflow-x: auto;
        white-space: nowrap;
        scrollbar-width: thin;
        scrollbar-color: var(--blue) #080b14;
    }

    .content .content-table th,
    .content .content-table td {
        min-width: 155px;
        padding: 15px 16px;
        white-space: normal;
    }

    .content h3 {
        padding: 17px 50px 17px 17px;
        font-size: 17px;
    }

    .content h3 + p {
        padding: 17px;
        font-size: 16px;
    }
}  

.expedition-widget {
    --widget-blue: #176cff;
    --widget-blue-light: #4d91ff;
    --widget-yellow: #ffe100;
    --widget-dark: #05070d;
    --widget-panel: #0a0f1d;
    --widget-panel-soft: #0e1528;
    --widget-text: #f5f7ff;
    --widget-muted: #9da8c3;

    position: relative;
    width: min(1240px, calc(100% - 40px));
    margin: 70px auto;
    padding: 38px;
    overflow: hidden;
    color: var(--widget-text);
    background:
        radial-gradient(
            circle at 85% 15%,
            rgba(23, 108, 255, 0.18),
            transparent 30%
        ),
        linear-gradient(
            145deg,
            #0b1020 0%,
            #060810 52%,
            #030406 100%
        );
    border: 1px solid rgba(69, 103, 205, 0.25);
    border-top: 3px solid var(--widget-blue);
    box-sizing: border-box;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.46);
}

.expedition-widget::before {
    content: "";
    position: absolute;
    top: -3px;
    right: 0;
    width: 180px;
    height: 4px;
    background: var(--widget-yellow);
    box-shadow: 0 0 22px rgba(255, 225, 0, 0.35);
}

.expedition-widget::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.22;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 42px 42px;
}

.expedition-widget > * {
    position: relative;
    z-index: 1;
}

.expedition-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 32px;
}

.expedition-heading {
    max-width: 760px;
}

.expedition-label,
.dashboard-eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--widget-yellow);
    font-size: 11px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 2px;
}

.expedition-heading h2 {
    margin: 0 0 12px;
    color: #ffffff;
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.16;
    letter-spacing: -1px;
}

.expedition-heading p {
    margin: 0;
    color: var(--widget-muted);
    font-size: 17px;
    line-height: 1.75;
}

.expedition-status {
    display: flex;
    align-items: center;
    gap: 9px;
    flex-shrink: 0;
    padding: 10px 14px;
    color: #cdd6ec;
    background: rgba(13, 20, 39, 0.86);
    border: 1px solid rgba(75, 112, 218, 0.25);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.status-light {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #42ee8b;
    box-shadow: 0 0 12px rgba(66, 238, 139, 0.8);
    animation: statusPulse 1.8s infinite;
}

.expedition-layout {
    display: grid;
    grid-template-columns: 310px minmax(0, 1fr);
    gap: 18px;
}

.region-selector {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.region-card {
    display: grid;
    grid-template-columns: 30px 42px minmax(0, 1fr) 20px;
    align-items: center;
    gap: 12px;
    width: 100%;
    min-height: 78px;
    padding: 14px;
    color: #d8dff0;
    cursor: pointer;
    text-align: left;
    background:
        linear-gradient(
            135deg,
            rgba(13, 20, 39, 0.96),
            rgba(7, 10, 20, 0.96)
        );
    border: 1px solid rgba(62, 91, 177, 0.2);
    font-family: inherit;
    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        background 0.25s ease;
}

.region-card:hover {
    transform: translateX(4px);
    border-color: rgba(64, 126, 255, 0.55);
}

.region-card.active {
    color: #ffffff;
    background:
        linear-gradient(
            135deg,
            rgba(22, 73, 190, 0.74),
            rgba(9, 18, 45, 0.98)
        );
    border-color: var(--widget-blue);
    box-shadow:
        inset 3px 0 0 var(--widget-yellow),
        0 12px 32px rgba(0, 59, 197, 0.2);
}

.region-number {
    color: #6f7c9e;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
}

.region-card.active .region-number {
    color: var(--widget-yellow);
}

.region-icon {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.07);
    font-size: 22px;
}

.region-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.region-info strong {
    font-size: 14px;
    line-height: 1.2;
}

.region-info small {
    color: #8290af;
    font-size: 11px;
}

.region-arrow {
    color: #7280a2;
    font-size: 24px;
}

.expedition-dashboard {
    padding: 28px;
    background:
        linear-gradient(
            145deg,
            rgba(14, 21, 42, 0.96),
            rgba(6, 9, 18, 0.98)
        );
    border: 1px solid rgba(66, 100, 194, 0.22);
}

.dashboard-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 25px;
    margin-bottom: 25px;
}

.dashboard-top h3 {
    margin: 0 0 10px;
    color: #ffffff;
    font-size: clamp(26px, 3vw, 38px);
    line-height: 1.2;
}

.dashboard-top p {
    max-width: 690px;
    margin: 0;
    color: var(--widget-muted);
    font-size: 15px;
    line-height: 1.7;
}

.region-emblem {
    display: grid;
    place-items: center;
    width: 78px;
    height: 78px;
    flex-shrink: 0;
    background:
        linear-gradient(
            145deg,
            rgba(35, 95, 229, 0.24),
            rgba(9, 15, 31, 0.75)
        );
    border: 1px solid rgba(67, 128, 255, 0.32);
    font-size: 38px;
    box-shadow: inset 0 0 30px rgba(23, 108, 255, 0.08);
}

.risk-panel {
    margin-bottom: 20px;
    padding: 18px;
    background: rgba(4, 7, 14, 0.62);
    border: 1px solid rgba(68, 98, 185, 0.18);
}

.risk-title {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 12px;
    letter-spacing: 0.7px;
}

.risk-title span {
    color: #8d99b7;
}

.risk-title strong {
    color: var(--widget-yellow);
}

.risk-track {
    height: 7px;
    overflow: hidden;
    background: #151b2c;
}

.risk-fill {
    display: block;
    width: 28%;
    height: 100%;
    background: linear-gradient(90deg, #2ddf85, #ffe100, #ff5e42);
    transition: width 0.5s ease;
}

.risk-scale {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    color: #64708d;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.expedition-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.data-panel {
    min-height: 150px;
    padding: 18px;
    background:
        linear-gradient(
            145deg,
            rgba(15, 23, 47, 0.86),
            rgba(7, 11, 23, 0.92)
        );
    border: 1px solid rgba(66, 98, 189, 0.18);
}

.panel-title {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 15px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.panel-icon {
    color: var(--widget-yellow);
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.data-tag {
    padding: 8px 10px;
    color: #c8d2e9;
    background: rgba(32, 72, 160, 0.2);
    border: 1px solid rgba(67, 116, 224, 0.22);
    font-size: 12px;
}

.equipment-list,
.team-list {
    display: grid;
    gap: 9px;
}

.equipment-item,
.team-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-bottom: 9px;
    color: #c8d2e9;
    border-bottom: 1px solid rgba(255, 255, 255, 0.055);
    font-size: 12px;
}

.equipment-item:last-child,
.team-item:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.equipment-item span:last-child,
.team-item span:last-child {
    color: var(--widget-yellow);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

.expedition-footer {
    display: grid;
    grid-template-columns: auto minmax(120px, 1fr) auto;
    align-items: center;
    gap: 18px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(77, 105, 185, 0.17);
}

.readiness-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.readiness-info span {
    color: #7f8baa;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.readiness-info strong {
    color: #ffffff;
    font-size: 22px;
}

.readiness-progress {
    height: 7px;
    overflow: hidden;
    background: #141a2b;
}

.readiness-progress span {
    display: block;
    width: 82%;
    height: 100%;
    background: linear-gradient(90deg, var(--widget-blue), #61a0ff);
    box-shadow: 0 0 16px rgba(23, 108, 255, 0.5);
    transition: width 0.5s ease;
}

.expedition-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    min-height: 48px;
    padding: 0 20px;
    color: #071020;
    background: var(--widget-yellow);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.7px;
    text-decoration: none;
    text-transform: uppercase;
    box-shadow: 0 12px 28px rgba(255, 225, 0, 0.14);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.expedition-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 35px rgba(255, 225, 0, 0.24);
}

.button-arrow {
    font-size: 20px;
}

@keyframes statusPulse {
    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.35;
    }
}

@media (max-width: 960px) {
    .expedition-layout {
        grid-template-columns: 1fr;
    }

    .region-selector {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .region-card:last-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 680px) {
    .expedition-widget {
        width: calc(100% - 24px);
        margin: 35px auto;
        padding: 22px 16px;
    }

    .expedition-header {
        flex-direction: column;
    }

    .expedition-status {
        width: fit-content;
    }

    .region-selector {
        grid-template-columns: 1fr;
    }

    .region-card:last-child {
        grid-column: auto;
    }

    .expedition-dashboard {
        padding: 20px 15px;
    }

    .dashboard-top {
        flex-direction: column-reverse;
    }

    .region-emblem {
        width: 64px;
        height: 64px;
        font-size: 31px;
    }

    .expedition-grid {
        grid-template-columns: 1fr;
    }

    .expedition-footer {
        grid-template-columns: 1fr;
    }

    .expedition-button {
        width: 100%;
        box-sizing: border-box;
    }
}