/*html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}
*/

:root {
    --bg: #050806;
    --card: #0d1510;
    --card2: #111d16;
    --green: #00e676;
    --green2: #00a859;
    --yellow: #ffd54f;
    --text: #f4fff8;
    --muted: #a8b8ad;
}

* {
    box-sizing: border-box
}

body {
    margin: 0;
    font-family: Inter,Segoe UI,Arial,sans-serif;
    background: radial-gradient(circle at top left, rgba(0,230,118,.18), transparent 35%), radial-gradient(circle at top right, rgba(255,213,79,.12), transparent 35%), linear-gradient(180deg,#030504,#08110b 55%,#020302);
    color: var(--text);
}

header {
    position: sticky;
    top: 0;
    z-index: 10;
    backdrop-filter: blur(18px);
    background: rgba(5,8,6,.75);
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.nav {
    max-width: 1180px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 22px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 900;
}

.logo {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    box-shadow: 0 0 35px rgba(0,230,118,.28);
}

.nav a {
    color: var(--muted);
    text-decoration: none;
    margin-left: 22px;
    font-size: 14px;
}

.hero {
    max-width: 1180px;
    margin: auto;
    padding: 90px 22px 60px;
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 38px;
    align-items: center;
}

.badge {
    display: inline-flex;
    padding: 8px 13px;
    border: 1px solid rgba(0,230,118,.35);
    background: rgba(0,230,118,.08);
    color: var(--green);
    border-radius: 999px;
    font-weight: 700;
    font-size: 13px;
}

h1 {
    font-size: clamp(42px,6vw,76px);
    line-height: .95;
    margin: 22px 0;
    letter-spacing: -3px;
}

.gradient {
    background: linear-gradient(90deg,var(--green),var(--yellow));
    -webkit-background-clip: text;
    color: transparent;
}

.hero p {
    color: var(--muted);
    font-size: 19px;
    line-height: 1.6;
}

.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.btn {
    border: 0;
    cursor: pointer;
    padding: 15px 22px;
    border-radius: 14px;
    font-weight: 900;
    font-size: 15px;
}

.btn-primary {
    background: linear-gradient(135deg,var(--green),var(--yellow));
    color: #061006;
    box-shadow: 0 18px 45px rgba(0,230,118,.23);
}

.btn-secondary {
    background: rgba(255,255,255,.08);
    color: var(--text);
    border: 1px solid rgba(255,255,255,.12);
}

.panel {
    background: linear-gradient(180deg,rgba(255,255,255,.1),rgba(255,255,255,.035));
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 32px;
    padding: 26px;
    box-shadow: 0 30px 90px rgba(0,0,0,.42);
}

    .panel img {
        width: 110px;
        display: block;
        margin: 8px auto 22px;
    }

.stat {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

    .stat div {
        background: rgba(0,0,0,.28);
        border: 1px solid rgba(255,255,255,.08);
        padding: 18px;
        border-radius: 20px;
    }

    .stat strong {
        font-size: 28px;
        color: var(--yellow);
    }

.section {
    max-width: 1180px;
    margin: auto;
    padding: 50px 22px;
}

.section-title h2 {
    font-size: 34px;
    margin: 12px 0 24px;
}

.searchbar {
    display: grid;
    grid-template-columns: 1fr 180px;
    gap: 12px;
    margin-bottom: 24px;
}

input, select {
    width: 100%;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.12);
    color: white;
    padding: 15px;
    border-radius: 16px;
    outline: none;
}

    select option {
        background: #111
    }

.case {
    background: linear-gradient(180deg,var(--card2),var(--card));
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 24px;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: 0 18px 50px rgba(0,0,0,.22);
}

.case-header {
    padding: 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

    .case-header:hover {
        background: rgba(255,255,255,.035);
    }

.case-title {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.tag {
    width: max-content;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255,213,79,.12);
    color: var(--yellow);
    font-size: 12px;
    font-weight: 900;
}

.case h3 {
    margin: 0;
    font-size: 23px;
}

.arrow {
    font-size: 24px;
    color: var(--green);
    transition: .25s;
}

.case.active .arrow {
    transform: rotate(90deg);
}

.case-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height .45s ease;
    padding: 0 22px;
    color: var(--muted);
    line-height: 1.6;
}

.case.active .case-content {
    max-height: 3200px;
    padding-bottom: 24px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 12px;
    margin: 18px 0;
}

.info {
    background: rgba(0,0,0,.25);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 16px;
    padding: 14px;
}

    .info b {
        display: block;
        color: white;
        margin-bottom: 5px;
    }

.details-box {
    margin-top: 18px;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all .45s ease;
}

    .details-box.loaded {
        max-height: 2200px;
        padding: 20px;
        border-radius: 18px;
        background: rgba(0,0,0,.28);
        border: 1px solid rgba(255,255,255,.08);
    }

    .details-box h4 {
        color: white;
        margin-top: 0;
        font-size: 24px;
    }

    .details-box p {
        line-height: 1.75;
    }

.source {
    margin-top: 14px;
    padding: 14px;
    border-left: 4px solid var(--green);
    background: rgba(0,230,118,.06);
    border-radius: 12px;
}

.warning {
    background: rgba(255,213,79,.09);
    border: 1px solid rgba(255,213,79,.22);
    border-radius: 22px;
    padding: 22px;
    color: #ffe9a6;
    line-height: 1.6;
}

footer {
    text-align: center;
    padding: 36px 20px;
    color: var(--muted);
    border-top: 1px solid rgba(255,255,255,.08);
}

@media(max - width:850px) {
    .hero {
        grid-template-columns: 1fr;
        padding-top: 55px
    }

    .searchbar {
        grid-template-columns: 1fr
    }

    .info-grid {
        grid-template-columns: 1fr
    }

    .nav nav {
        display: none
    }
}