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

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #090909;
    color: #eeeeee;
    font-family: 'Inter', sans-serif;
}

.header {
    height: 70px;
    padding: 0 7%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #242424;
    background: rgba(9,9,9,.95);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-weight: 900;
    letter-spacing: 2px;
}

.logo span {
    color: #d71920;
    margin-right: 7px;
}

nav {
    display: flex;
    gap: 30px;
}

nav a {
    color: #aaa;
    text-decoration: none;
    font-size: 14px;
}

nav a:hover {
    color: white;
}

.hero {
    min-height: 680px;
    padding: 80px 8%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    background:
        radial-gradient(circle at 80% 40%, #271010 0%, transparent 40%),
        #090909;
}

.hero-content {
    max-width: 650px;
}

.badge {
    display: inline-block;
    border: 1px solid #5c2020;
    color: #e44;
    padding: 8px 14px;
    font-size: 11px;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.hero h1 {
    font-size: clamp(65px, 10vw, 130px);
    line-height: .83;
    letter-spacing: -6px;
    font-weight: 900;
}

.hero h1 span {
    color: #d71920;
}

.hero p {
    color: #aaa;
    max-width: 540px;
    line-height: 1.7;
    margin: 35px 0;
    font-size: 17px;
}

.main-button,
.investigate-button {
    display: inline-block;
    border: none;
    background: #d71920;
    color: white;
    padding: 16px 25px;
    text-decoration: none;
    font-weight: 800;
    cursor: pointer;
    transition: .2s;
}

.main-button:hover,
.investigate-button:hover {
    background: #ff222b;
    transform: translateY(-2px);
}

.hero-file {
    width: 340px;
}

.file-card {
    background: #eee;
    color: #111;
    padding: 28px;
    min-height: 390px;
    transform: rotate(3deg);
    box-shadow: 0 30px 70px #000;
}

.file-top {
    display: flex;
    justify-content: space-between;
    border-bottom: 2px solid #111;
    padding-bottom: 15px;
    font-size: 12px;
    font-weight: 800;
}

.file-stamp {
    border: 4px solid #b00;
    color: #b00;
    display: inline-block;
    padding: 8px;
    margin: 50px 0;
    transform: rotate(-8deg);
    font-weight: 900;
}

.file-info p {
    margin-top: 15px;
    font-size: 10px;
    color: #666;
}

.file-info strong {
    font-size: 20px;
}

.file-info .red {
    color: #b00;
}

.section {
    padding: 100px 8%;
    border-top: 1px solid #202020;
}

.section-title span {
    color: #d71920;
    font-size: 11px;
    letter-spacing: 3px;
}

.section-title h2 {
    font-size: 45px;
    margin: 10px 0 50px;
}

.case-card {
    border: 1px solid #292929;
    background: #101010;
    padding: 40px;
    display: flex;
    gap: 40px;
}

.case-number {
    color: #777;
    min-width: 90px;
    font-size: 12px;
}

.case-number strong {
    color: #d71920;
    font-size: 50px;
}

.case-content {
    max-width: 800px;
}

.case-status {
    color: #d71920;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
}

.case-content h3 {
    font-size: 42px;
    margin: 10px 0;
}

.case-content p {
    color: #aaa;
    line-height: 1.7;
}

.case-stats {
    display: flex;
    gap: 20px;
    margin: 25px 0;
    flex-wrap: wrap;
}

.case-stats span {
    border: 1px solid #333;
    padding: 8px 12px;
    font-size: 11px;
    color: #bbb;
}

.how {
    background: #0d0d0d;
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.step {
    border: 1px solid #292929;
    padding: 30px;
}

.step > div {
    color: #d71920;
    font-size: 30px;
    font-weight: 900;
}

.step h3 {
    margin: 15px 0 10px;
}

.step p {
    color: #888;
    line-height: 1.6;
}

.case-page {
    padding: 60px 8%;
    background: #0c0c0c;
}

.case-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-bottom: 1px solid #292929;
    padding-bottom: 30px;
}

.case-header span {
    color: #777;
    font-size: 11px;
    letter-spacing: 2px;
}

.case-header h2 {
    font-size: 40px;
}

.case-danger {
    color: #d71920;
    font-size: 11px;
    font-weight: 800;
}

.back-button {
    background: transparent;
    border: 1px solid #333;
    color: #aaa;
    padding: 12px;
    cursor: pointer;
}

.case-intro {
    max-width: 800px;
    margin: 60px auto;
    background: #131313;
    padding: 40px;
    border-left: 3px solid #d71920;
}

.case-intro h3,
.investigation-section > h3 {
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.case-intro p {
    color: #aaa;
    line-height: 1.8;
    margin: 15px 0;
}

.warning {
    background: #211313;
    color: #e77;
    padding: 15px;
    margin-top: 25px;
    font-size: 13px;
}

.investigation-section {
    max-width: 1100px;
    margin: 70px auto;
}

.suspects {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.suspect {
    border: 1px solid #292929;
    padding: 25px;
    background: #111;
}

.suspect-number {
    color: #d71920;
    font-size: 30px;
    font-weight: 900;
}

.suspect h4 {
    font-size: 20px;
    margin: 10px 0;
}

.suspect p {
    color: #777;
    margin-bottom: 20px;
}

.suspect button {
    background: transparent;
    border: 1px solid #444;
    color: #aaa;
    padding: 9px;
    cursor: pointer;
}

.suspect button:hover {
    border-color: #d71920;
    color: white;
}

.clues {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.clue {
    padding: 20px;
    border: 1px solid #262626;
    background: #111;
}

.clue span {
    color: #d71920;
    font-size: 10px;
    font-weight: 800;
}

.clue p {
    color: #bbb;
    margin-top: 10px;
    line-height: 1.5;
}

.timeline {
    border-left: 2px solid #333;
    padding-left: 25px;
}

.timeline div {
    padding: 15px 0;
}

.timeline strong {
    color: #d71920;
    display: inline-block;
    width: 70px;
}

.timeline span {
    color: #aaa;
}

.accusation {
    max-width: 900px;
    margin: 100px auto;
    text-align: center;
    padding: 50px 20px;
    border: 1px solid #352020;
    background: #120c0c;
}

.accusation h3 {
    font-size: 30px;
}

.accusation p {
    color: #888;
    margin: 15px 0 30px;
}

.suspect-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.suspect-buttons button {
    background: #1a1a1a;
    color: #ddd;
    border: 1px solid #444;
    padding: 12px 18px;
    cursor: pointer;
}

.suspect-buttons button:hover {
    border-color: #d71920;
}

.result {
    max-width: 850px;
    margin: 50px auto 100px;
    text-align: center;
}

.result h2 {
    font-size: 45px;
}

.result > p {
    color: #aaa;
    margin: 20px;
}

.solution {
    background: #141414;
    border: 1px solid #333;
    padding: 35px;
    text-align: left;
}

.solution h3 {
    color: #d71920;
    margin-bottom: 20px;
}

.solution p {
    color: #aaa;
    line-height: 1.7;
    margin: 15px 0;
}

.final-message {
    text-align: center;
    color: #d71920;
    font-weight: 900;
    font-size: 25px;
    margin-top: 30px;
}

footer {
    border-top: 1px solid #222;
    padding: 40px 8%;
    color: #777;
    text-align: center;
}

footer p {
    margin-top: 10px;
    font-size: 12px;
}

.hidden {
    display: none !important;
}

@media (max-width: 800px) {

    nav {
        display: none;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 60px;
    }

    .hero-file {
        width: 280px;
    }

    .case-card {
        flex-direction: column;
    }

    .steps,
    .suspects,
    .clues {
        grid-template-columns: 1fr;
    }

    .case-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .section-title h2 {
        font-size: 35px;
    }

    .hero h1 {
        letter-spacing: -3px;
    }

    .file-card {
        min-height: 330px;
    }
  }
