<!DOCTYPE html>
<html lang="ja">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Koto City Police Database - Kraken</title>
    <style>
        body {
            background-color: black;
            color: limegreen;
            font-family: "Courier New", Courier, monospace;
            margin: 0;
            padding: 0;
        }

        .container {
            width: 90%;
            max-width: 800px;
            margin: 50px auto;
            border: 2px solid limegreen;
            padding: 20px;
            border-radius: 8px;
            position: relative; /* Relative positioning for sidebar adjustment */
        }

        h1, h2 {
            text-align: center;
        }

        .section {
            margin-bottom: 20px;
        }

        .section h2 {
            border-bottom: 1px solid limegreen;
            padding-bottom: 5px;
        }

        .plates {
            list-style: none;
            padding: 0;
        }

        .plates li {
            margin: 5px 0;
        }

        .bounty {
            font-size: 1.5em;
            font-weight: bold;
            text-align: center;
        }

        .last-seen {
            font-style: italic;
        }

        .car {
            margin-bottom: 5px;
        }

        .back-link {
            display: block;
            margin-top: 20px;
            text-align: center;
            color: limegreen;
            text-decoration: none;
        }

        .back-link:hover {
            text-decoration: underline;
        }

        .header-title {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }

        .header-title .name {
            font-size: 1.5em;
            font-weight: bold;
        }

        .header-title .organization {
            font-size: 1.2em;
            text-align: right;
        }

        /* Sidebar adjustments */
        .sidebar {
            position: absolute;
            left: -20px; /* Move sidebar further left */
            top: 20px;
            width: 50px;
            height: calc(100% - 40px);
            background-color: limegreen;
            border-radius: 8px;
            padding: 10px;
        }
    </style>
</head>
<body>
    <div class="container">
        <div class="sidebar"></div> <!-- Sidebar added for design -->
        <div class="header-title">
            <span class="name">Kraken</span>
            <span class="organization">Organization: Boys With Skirts</span>
        </div>

        <div class="section">
            <h2>Rap Sheet</h2>
            <p>Illegal car modifications (including exhaust, transmission, missing hood, and more), failure to obey police orders, involvement in multiple police chases, evasion of pursuit, reckless driving, mismatched license plates, participation in illegal night races, leader of an illegal racing crew, numerous unpaid tickets, fleeing crash scenes, speeding, property destruction, and multiple reports of assault (choking).</p>
        </div>

        <div class="section">
            <h2>Suspected Cars To Drive</h2>
            <div class="car">BLACK 1989 Sannis Livisa 180sx</div>
        </div>

        <div class="section">
            <h2>Plates</h2>
            <ul class="plates">
                <li>10-10 (don’t match the car)</li>
            </ul>
        </div>

        <div class="section">
            <h2>Last Seen</h2>
            <p class="last-seen">Kiba ETC Toll Booth</p>
        </div>

        <div class="section bounty">
            <p>Bounty: ¥95,545,165 (24,958,04.05 PLN as of 22.12.2024)</p>
        </div>

        <a class="back-link" href="team_selection.html">← Back to Team Selection</a>
    </div>
</body>
</html>
