/* =========================================================
   GLOBAL
========================================================= */

* {
    box-sizing: border-box;
}

:root {
    --bg: #010509;
    --bg-soft: #030a10;

    --panel: rgba(2, 10, 17, 0.88);
    --panel-soft: rgba(3, 13, 21, 0.82);

    --line: rgba(0, 204, 255, 0.18);
    --line-bright: rgba(0, 217, 255, 0.52);

    --text: #dff8ff;
    --muted: #668692;

    --cyan: #00d9ff;
    --blue: #0077ff;

    --green: #00f59a;
    --yellow: #ffd000;
    --red: #ff3b5f;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;

    width: 100%;
    min-height: 100vh;

    overflow-x: hidden;

    color: var(--text);

    background: var(--bg);

    font-family:
        Consolas,
        "Courier New",
        monospace;
}

button,
textarea,
input {
    font-family: inherit;
}

button {
    user-select: none;
}

.hidden {
    display: none !important;
}


/* =========================================================
   MATRIX BACKGROUND
========================================================= */

#matrixCanvas {
    position: fixed;

    inset: 0;

    width: 100vw;
    height: 100vh;

    z-index: -10;

    display: block;

    background: #010509;

    pointer-events: none;
}

.background-overlay {
    position: fixed;

    inset: 0;

    z-index: -9;

    pointer-events: none;

    background:
        radial-gradient(
            circle at 50% 20%,
            rgba(0, 119, 255, 0.08),
            transparent 40%
        ),
        linear-gradient(
            to bottom,
            rgba(0, 5, 10, 0.30),
            rgba(0, 3, 7, 0.84)
        );
}

.background-overlay::after {
    content: "";

    position: absolute;

    inset: 0;

    opacity: 0.14;

    background:
        repeating-linear-gradient(
            to bottom,
            rgba(255, 255, 255, 0.025) 0px,
            rgba(255, 255, 255, 0.025) 1px,
            transparent 1px,
            transparent 4px
        );
}


/* =========================================================
   HEADER
========================================================= */

.topbar {
    position: sticky;

    top: 0;

    z-index: 100;

    min-height: 72px;

    padding:
        10px
        max(18px, 6vw);

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    background:
        rgba(1, 7, 12, 0.90);

    border-bottom:
        1px solid
        var(--line);

    backdrop-filter:
        blur(16px);

    box-shadow:
        0 8px 30px
        rgba(0, 0, 0, 0.45);
}

.brand {
    display: flex;

    align-items: center;

    gap: 12px;
}

.brand-logo {
    display: block;

    width: 46px;
    height: 46px;

    min-width: 46px;

    object-fit: cover;

    border-radius: 50%;

    border:
        1px solid
        rgba(0, 217, 255, 0.40);

    background: #000;

    box-shadow:
        0 0 12px
        rgba(0, 217, 255, 0.18);
}

.brand-name {
    color: var(--cyan);

    font-size: 16px;

    font-weight: 900;

    letter-spacing: 4px;

    text-shadow:
        0 0 10px
        rgba(0, 217, 255, 0.45);
}

.brand-subtitle {
    margin-top: 3px;

    color: #476775;

    font-size: 8px;

    letter-spacing: 2px;
}

.system-status {
    display: flex;

    align-items: center;

    gap: 9px;

    color: #637f8b;

    font-size: 9px;

    letter-spacing: 2px;
}

.status-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--cyan);

    box-shadow:
        0 0 10px
        var(--cyan);
}


/* =========================================================
   PAGE
========================================================= */

.page {
    width:
        min(
            1080px,
            calc(100% - 26px)
        );

    margin: 0 auto;
}


/* =========================================================
   HERO
========================================================= */

.hero {
    width: 100%;

    padding:
        45px
        10px
        34px;

    text-align: center;
}

.hero-small {
    display: inline-block;

    margin-bottom: 14px;

    color: var(--cyan);

    font-size: 9px;

    letter-spacing: 4px;
}


/* =========================================================
   MASCOT
========================================================= */

.mascot-stage {
    width: 100%;

    margin:
        0 auto
        24px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;
}

.mascot-wrap {
    position: relative;

    width: 360px;
    height: 235px;

    max-width: 92vw;

    margin: auto;

    display: flex;

    align-items: center;

    justify-content: center;
}

.mascot-glow {
    position: absolute;

    left: 50%;
    top: 50%;

    width: 185px;
    height: 185px;

    transform:
        translate(
            -50%,
            -50%
        );

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(0, 217, 255, 0.18),
            rgba(0, 119, 255, 0.07) 45%,
            transparent 72%
        );

    filter:
        blur(12px);

    animation:
        mascotGlow
        2.8s
        ease-in-out
        infinite;
}


/*
   PENTING:
   INI YANG MEMBATASI GAMBAR
   SUPAYA TIDAK FULL SCREEN
*/

.hero-mascot {
    position: relative;

    z-index: 5;

    display: block;

    width: 190px;
    height: 190px;

    max-width: 190px;
    max-height: 190px;

    object-fit: cover;

    object-position: center;

    border-radius: 18px;

    background: #000;

    filter:
        drop-shadow(
            0 0 12px
            rgba(0, 217, 255, 0.34)
        )
        drop-shadow(
            0 0 25px
            rgba(0, 90, 255, 0.15)
        );

    animation:
        mascotFloat
        3.2s
        ease-in-out
        infinite;
}


/* =========================================================
   ANIMATED HANDS
========================================================= */

.hand {
    position: absolute;

    z-index: 7;

    width: 100px;
    height: 100px;

    pointer-events: none;
}

.hand .arm {
    position: absolute;

    width: 62px;
    height: 7px;

    border-radius: 999px;

    background:
        linear-gradient(
            90deg,
            rgba(0, 70, 150, 0.15),
            rgba(0, 217, 255, 0.95)
        );

    box-shadow:
        0 0 9px
        rgba(0, 217, 255, 0.45);
}

.hand .palm {
    position: absolute;

    width: 25px;
    height: 31px;

    border:
        2px solid
        var(--cyan);

    border-radius:
        13px
        13px
        9px
        9px;

    background:
        rgba(0, 40, 70, 0.20);

    box-shadow:
        0 0 9px
        rgba(0, 217, 255, 0.34);
}

.hand .finger {
    position: absolute;

    width: 5px;
    height: 20px;

    border-radius: 999px;

    background: var(--cyan);

    box-shadow:
        0 0 7px
        rgba(0, 217, 255, 0.50);
}


/* LEFT */

.hand-left {
    left: 14px;

    top: 105px;

    transform-origin:
        80px 30px;

    animation:
        leftHandPresent
        2.5s
        ease-in-out
        infinite;
}

.hand-left .arm {
    left: 40px;

    top: 42px;

    transform:
        rotate(150deg);
}

.hand-left .palm {
    left: 10px;

    top: 21px;

    transform:
        rotate(-20deg);
}

.hand-left .finger-1 {
    left: 12px;
    top: 3px;

    transform:
        rotate(-15deg);
}

.hand-left .finger-2 {
    left: 21px;
    top: 0;
}

.hand-left .finger-3 {
    left: 30px;
    top: 3px;

    transform:
        rotate(15deg);
}


/* RIGHT */

.hand-right {
    right: 12px;

    top: 105px;

    transform-origin:
        20px 28px;

    animation:
        rightHandPresent
        2.2s
        ease-in-out
        infinite;
}

.hand-right .arm {
    left: 0;

    top: 42px;

    transform:
        rotate(30deg);
}

.hand-right .palm {
    right: 10px;

    top: 19px;

    transform:
        rotate(20deg);
}

.hand-right .finger-1 {
    right: 30px;
    top: 2px;

    transform:
        rotate(-12deg);
}

.hand-right .finger-2 {
    right: 21px;
    top: -1px;
}

.hand-right .finger-3 {
    right: 12px;
    top: 2px;

    transform:
        rotate(12deg);
}


/* =========================================================
   MASCOT MESSAGE
========================================================= */

.mascot-message-wrap {
    width: 100%;

    min-height: 58px;

    margin-top: 3px;
}

.mascot-terminal-line {
    margin-bottom: 6px;

    color: #547480;

    font-size: 8px;

    letter-spacing: 2px;
}

.mascot-message {
    display: inline-block;

    width: auto;
    max-width: 95%;

    padding:
        11px
        16px;

    color: var(--cyan);

    background:
        rgba(1, 10, 17, 0.83);

    border:
        1px solid
        rgba(0, 217, 255, 0.18);

    font-size: 11px;

    letter-spacing: 1px;

    text-shadow:
        0 0 8px
        rgba(0, 217, 255, 0.25);

    box-shadow:
        inset 0 0 18px
        rgba(0, 217, 255, 0.025);
}


/* =========================================================
   HERO TITLE
========================================================= */

.hero h1 {
    margin:
        24px
        0
        0;

    color: white;

    font-size:
        clamp(
            38px,
            6vw,
            68px
        );

    line-height: 1;

    letter-spacing: 5px;
}

.hero h1 span {
    color: var(--cyan);

    text-shadow:
        0 0 14px
        rgba(0, 217, 255, 0.55);
}

.hero p {
    max-width: 670px;

    margin:
        18px auto
        0;

    color: var(--muted);

    font-family:
        Arial,
        sans-serif;

    font-size: 13px;

    line-height: 1.7;
}


/* =========================================================
   TABS
========================================================= */

.scanner-switch {
    width: min(800px, 100%);

    margin:
        0 auto
        22px;

    display: grid;

    grid-template-columns:
        1fr 1fr;

    overflow: hidden;

    background:
        rgba(0, 7, 12, 0.82);

    border:
        1px solid
        var(--line);

    border-radius: 5px;
}

.scanner-tab {
    padding:
        15px
        16px;

    border: 0;

    cursor: pointer;

    color: #587683;

    background:
        transparent;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;

    transition: 0.2s;
}

.scanner-tab:first-child {
    border-right:
        1px solid
        var(--line);
}

.scanner-tab:hover {
    color: var(--cyan);

    background:
        rgba(0, 217, 255, 0.03);
}

.scanner-tab.active {
    color: var(--cyan);

    background:
        rgba(0, 217, 255, 0.06);

    box-shadow:
        inset 0 -2px 0
        var(--cyan);
}


/* =========================================================
   SCANNER
========================================================= */

.scanner-section {
    width: min(850px, 100%);

    margin: auto;
}

.scanner-card {
    position: relative;

    width: 100%;

    padding: 28px;

    background:
        var(--panel);

    border:
        1px solid
        var(--line);

    border-radius: 8px;

    backdrop-filter:
        blur(12px);

    box-shadow:
        0 25px 75px
        rgba(0, 0, 0, 0.50);
}

.scanner-card::before {
    content: "";

    position: absolute;

    left: 25px;
    top: -1px;

    width: 80px;
    height: 1px;

    background: var(--cyan);

    box-shadow:
        0 0 9px
        var(--cyan);
}


/* =========================================================
   CARD HEADER
========================================================= */

.card-header {
    display: flex;

    align-items: flex-start;

    justify-content: space-between;

    gap: 20px;

    margin-bottom: 25px;
}

.terminal-label {
    margin-bottom: 7px;

    color: var(--cyan);

    font-size: 8px;

    letter-spacing: 3px;
}

.card-header h2 {
    margin: 0;

    font-size: 21px;

    letter-spacing: 2px;
}

.card-header p {
    margin:
        8px
        0
        0;

    color: var(--muted);

    font-family:
        Arial,
        sans-serif;

    font-size: 12px;
}

.card-tag {
    flex-shrink: 0;

    padding:
        6px
        9px;

    color: var(--cyan);

    border:
        1px solid
        var(--line);

    font-size: 8px;

    letter-spacing: 2px;
}


/* =========================================================
   FILE DROP
========================================================= */

.drop-zone {
    width: 100%;

    padding:
        45px
        20px;

    text-align: center;

    background:
        rgba(0, 5, 9, 0.56);

    border:
        1px dashed
        rgba(0, 217, 255, 0.28);

    transition: 0.2s;
}

.drop-zone:hover,
.drop-zone.drag {
    border-color: var(--cyan);

    background:
        rgba(0, 217, 255, 0.03);
}

.drop-cross {
    width: 46px;
    height: 46px;

    margin:
        0 auto
        15px;

    display: grid;

    place-items: center;

    color: var(--cyan);

    border:
        1px solid
        var(--line-bright);

    font-size: 27px;

    text-shadow:
        0 0 9px
        var(--cyan);
}

.drop-zone h3 {
    margin:
        0
        0
        8px;

    font-size: 14px;

    letter-spacing: 2px;
}

.drop-zone p {
    margin:
        0
        0
        17px;

    color: var(--muted);

    font-family:
        Arial,
        sans-serif;

    font-size: 11px;
}

.drop-zone small {
    display: block;

    margin-top: 14px;

    color: #466572;

    font-size: 8px;

    letter-spacing: 1px;
}


/* =========================================================
   BUTTON
========================================================= */

.primary-button,
.secondary-button {
    border:
        1px solid;

    border-radius: 3px;

    cursor: pointer;

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 2px;

    transition: 0.18s;
}

.primary-button {
    padding:
        12px
        22px;

    color: #dffaff;

    background:
        rgba(0, 160, 255, 0.08);

    border-color:
        rgba(0, 217, 255, 0.48);
}

.primary-button:hover {
    color: white;

    background:
        rgba(0, 217, 255, 0.12);

    border-color:
        var(--cyan);

    box-shadow:
        0 0 14px
        rgba(0, 217, 255, 0.14);
}

.secondary-button {
    padding:
        11px
        18px;

    color: #728e99;

    background:
        rgba(3, 15, 22, 0.85);

    border-color:
        #17303b;
}

.secondary-button:hover {
    color: var(--cyan);

    border-color:
        var(--line-bright);
}

.secondary-button.small {
    font-size: 8px;
}


/* =========================================================
   LINK INPUT
========================================================= */

.link-input-area label {
    display: block;

    margin-bottom: 8px;

    color: var(--cyan);

    font-size: 8px;

    letter-spacing: 2px;
}

.link-input-area textarea {
    display: block;

    width: 100%;

    min-height: 125px;

    padding: 15px;

    resize: vertical;

    outline: none;

    color: #c6f4ff;

    caret-color: var(--cyan);

    background:
        rgba(0, 5, 9, 0.72);

    border:
        1px solid
        var(--line);

    border-radius: 3px;

    font-size: 11px;

    line-height: 1.6;
}

.link-input-area textarea:focus {
    border-color:
        var(--cyan);

    box-shadow:
        0 0 10px
        rgba(0, 217, 255, 0.07);
}

.link-actions {
    display: flex;

    gap: 9px;

    margin-top: 13px;
}

.security-note {
    margin-top: 15px;

    padding: 11px;

    display: flex;

    gap: 11px;

    color: #65818d;

    background:
        rgba(0, 217, 255, 0.025);

    border-left:
        2px solid
        var(--cyan);

    font-family:
        Arial,
        sans-serif;

    font-size: 10px;

    line-height: 1.5;
}

.security-note strong {
    color: var(--cyan);

    font-family:
        Consolas,
        monospace;
}


/* =========================================================
   LOADING
========================================================= */

.loading {
    padding:
        45px
        15px;

    text-align: center;
}

.scanner-loader {
    position: relative;

    width: 65px;
    height: 2px;

    margin:
        0 auto
        20px;

    overflow: hidden;

    background:
        #102934;
}

.scanner-loader::after {
    content: "";

    position: absolute;

    top: 0;
    left: -30px;

    width: 30px;
    height: 100%;

    background: var(--cyan);

    box-shadow:
        0 0 9px
        var(--cyan);

    animation:
        scannerLoading
        1s
        linear
        infinite;
}

.loading strong {
    display: block;

    color: var(--cyan);

    font-size: 10px;

    letter-spacing: 2px;
}

.loading p {
    color: #53727e;

    font-size: 10px;
}


/* =========================================================
   RESULT
========================================================= */

.result-card {
    width: 100%;

    margin-top: 23px;

    padding: 21px;

    background:
        rgba(0, 5, 9, 0.80);

    border:
        1px solid
        var(--line);

    border-radius: 4px;
}

.result-header {
    display: flex;

    align-items: flex-start;

    justify-content: space-between;

    gap: 18px;
}

.result-label {
    color: var(--cyan);

    font-size: 8px;

    letter-spacing: 2px;
}

.result-header h3 {
    margin:
        7px
        0
        0;

    overflow-wrap: anywhere;
}

.result-status {
    flex-shrink: 0;

    padding:
        8px
        11px;

    border:
        1px solid;

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 1px;
}

.result-status.safe {
    color: var(--green);

    border-color:
        rgba(0, 245, 154, 0.42);
}

.result-status.warning {
    color: var(--yellow);

    border-color:
        rgba(255, 208, 0, 0.42);
}

.result-status.danger {
    color: var(--red);

    border-color:
        rgba(255, 59, 95, 0.50);
}


/* =========================================================
   RISK
========================================================= */

.risk-area {
    margin:
        25px
        0;

    display: grid;

    grid-template-columns:
        125px
        1fr;

    align-items: end;

    gap: 20px;
}

.risk-label {
    color: #506f7b;

    font-size: 8px;

    letter-spacing: 2px;
}

.risk-number {
    margin-top: 4px;

    color: var(--cyan);

    font-size: 35px;

    font-weight: 900;
}

.risk-number small {
    color: #486570;

    font-size: 9px;
}

.risk-bar {
    height: 3px;

    margin-bottom: 9px;

    background:
        #102631;
}

.risk-bar-fill {
    width: 0;

    height: 100%;

    background:
        linear-gradient(
            90deg,
            var(--cyan),
            var(--yellow),
            var(--red)
        );

    box-shadow:
        0 0 7px
        rgba(0, 217, 255, 0.38);

    transition:
        width
        0.4s;
}


/* =========================================================
   INFO
========================================================= */

.info-grid {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 7px;

    margin-bottom: 12px;
}

.info-item {
    min-width: 0;

    padding: 13px;

    background:
        rgba(1, 10, 16, 0.90);

    border:
        1px solid
        rgba(0, 217, 255, 0.10);
}

.info-item.full {
    grid-column:
        1 / -1;
}

.info-item span {
    display: block;

    margin-bottom: 6px;

    color: #4a6975;

    font-size: 7px;

    letter-spacing: 2px;
}

.info-item strong {
    display: block;

    overflow-wrap: anywhere;

    color: #d9f8ff;

    font-size: 11px;
}

.info-item code {
    display: block;

    overflow-wrap: anywhere;

    color: var(--cyan);

    font-size: 9px;

    line-height: 1.6;
}


/* =========================================================
   PANELS
========================================================= */

.analysis-panel {
    margin-top: 9px;

    padding: 15px;

    background:
        rgba(1, 9, 15, 0.90);

    border:
        1px solid
        rgba(0, 217, 255, 0.10);
}

.panel-title {
    margin-bottom: 12px;

    color: #dffaff;

    font-size: 10px;

    font-weight: 900;

    letter-spacing: 1px;
}

.panel-subtitle {
    color: #56737e;

    font-family:
        Arial,
        sans-serif;

    font-size: 10px;
}


/* =========================================================
   VIRUSTOTAL
========================================================= */

.vt-header {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;
}

.vt-score {
    font-size: 24px;

    font-weight: 900;
}

.vt-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 6px;

    margin-top: 13px;
}

.vt-stat {
    padding: 10px;

    background: #01070c;

    border:
        1px solid
        rgba(0, 217, 255, 0.08);
}

.vt-stat span {
    display: block;

    color: #496773;

    font-size: 7px;
}

.vt-stat strong {
    display: block;

    margin-top: 5px;

    font-size: 20px;
}


/* =========================================================
   INDICATOR
========================================================= */

.indicator-grid {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 6px;
}

.indicator-item {
    min-width: 0;

    padding: 10px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 10px;

    background:
        #01070c;

    border:
        1px solid
        rgba(0, 217, 255, 0.08);
}

.indicator-item span {
    color: #597682;

    font-size: 9px;
}

.indicator-value {
    color: white;

    font-size: 9px;

    font-weight: 900;
}

.indicator-value.yes {
    color: var(--yellow);
}

.indicator-value.no {
    color: var(--green);
}


/* =========================================================
   WARNINGS
========================================================= */

.warning-list {
    margin: 0;

    padding-left: 18px;

    color: #89a4ae;

    font-family:
        Arial,
        sans-serif;

    font-size: 11px;

    line-height: 1.65;
}

.warning-list li::marker {
    color: var(--cyan);
}


/* =========================================================
   COLORS
========================================================= */

.text-red {
    color: var(--red);
}

.text-yellow {
    color: var(--yellow);
}

.text-green {
    color: var(--green);
}

.text-muted {
    color: #627f8a;
}

.text-cyan {
    color: var(--cyan);
}


/* =========================================================
   HISTORY
========================================================= */

.history-section {
    width: min(850px, 100%);

    margin:
        60px
        auto;
}

.section-heading {
    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 18px;

    margin-bottom: 14px;
}

.section-heading h2 {
    margin:
        6px
        0
        0;

    font-size: 18px;

    letter-spacing: 2px;
}

.history-list {
    display: grid;

    gap: 6px;
}

.history-item {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 18px;

    min-width: 0;

    padding: 14px;

    background:
        rgba(1, 10, 16, 0.84);

    border:
        1px solid
        rgba(0, 217, 255, 0.09);
}

.history-title {
    overflow-wrap: anywhere;

    color: #cceff7;

    font-size: 10px;

    font-weight: 700;
}

.history-meta {
    margin-top: 4px;

    color: #486672;

    font-size: 8px;
}

.history-status {
    flex-shrink: 0;

    text-align: right;

    color: var(--cyan);

    font-size: 9px;

    font-weight: 900;
}


/* =========================================================
   FOOTER
========================================================= */

footer {
    padding: 30px;

    display: flex;

    justify-content: center;

    gap: 9px;

    color: #3d5c68;

    border-top:
        1px solid
        rgba(0, 217, 255, 0.07);

    background:
        rgba(0, 4, 7, 0.55);

    font-size: 8px;

    letter-spacing: 2px;
}

footer strong {
    color: #658995;
}


/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes mascotFloat {
    0%,
    100% {
        transform:
            translateY(0);
    }

    50% {
        transform:
            translateY(-7px);
    }
}

@keyframes mascotGlow {
    0%,
    100% {
        opacity: 0.50;

        transform:
            translate(-50%, -50%)
            scale(0.95);
    }

    50% {
        opacity: 1;

        transform:
            translate(-50%, -50%)
            scale(1.08);
    }
}

@keyframes rightHandPresent {
    0%,
    100% {
        transform:
            rotate(2deg)
            translateY(2px);
    }

    35% {
        transform:
            rotate(17deg)
            translateY(-5px);
    }

    65% {
        transform:
            rotate(25deg)
            translateY(1px);
    }
}

@keyframes leftHandPresent {
    0%,
    100% {
        transform:
            rotate(-1deg)
            translateY(1px);
    }

    50% {
        transform:
            rotate(-12deg)
            translateY(-4px);
    }
}

@keyframes scannerLoading {
    from {
        left: -30px;
    }

    to {
        left: 100%;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .topbar {
        padding:
            10px
            14px;
    }

    .brand-logo {
        width: 40px;
        height: 40px;

        min-width: 40px;
    }

    .brand-name {
        font-size: 12px;

        letter-spacing: 3px;
    }

    .brand-subtitle {
        display: none;
    }

    .system-status {
        display: none;
    }

    .page {
        width:
            calc(100% - 16px);
    }

    .hero {
        padding:
            35px
            5px
            27px;
    }

    .hero-small {
        font-size: 7px;

        letter-spacing: 3px;
    }

    .mascot-wrap {
        width: 280px;
        height: 205px;
    }

    .hero-mascot {
        width: 155px;
        height: 155px;

        max-width: 155px;
        max-height: 155px;
    }

    .mascot-glow {
        width: 155px;
        height: 155px;
    }

    .hand {
        transform: scale(0.80);
    }

    .hand-left {
        left: -5px;
    }

    .hand-right {
        right: -5px;
    }

    .mascot-message {
        white-space: normal;

        line-height: 1.5;

        font-size: 9px;
    }

    .hero h1 {
        font-size: 35px;

        letter-spacing: 3px;
    }

    .scanner-card {
        padding: 16px;
    }

    .card-header {
        display: block;
    }

    .card-tag {
        display: inline-block;

        margin-top: 12px;
    }

    .risk-area {
        grid-template-columns:
            1fr;
    }

    .info-grid,
    .indicator-grid {
        grid-template-columns:
            1fr;
    }

    .info-item.full {
        grid-column: auto;
    }

    .vt-grid {
        grid-template-columns:
            1fr 1fr;
    }

    .result-header {
        display: block;
    }

    .result-status {
        display: inline-block;

        margin-top: 12px;
    }

    .link-actions {
        flex-direction: column;
    }

    .section-heading {
        align-items: flex-start;

        flex-direction: column;
    }
}