  body {
            background: #181a20;
            color: #e0e0e0;
            font-family: 'Segoe UI', Arial, sans-serif;
            margin: 0;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        nav {
            background: #23272f;
            padding: 1rem 2rem;
            display: flex;
            gap: 2rem;
            align-items: center;
            box-shadow: 0 2px 8px #0002;
        }
        nav a {
            color: #a3e635;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.2s;
        }
        nav a:hover {
            color: #facc15;
        }
        .container {
            flex: 1;
            padding: 2rem;
            max-width: 700px;
            margin: auto;
        }
        h1 {
            color: #facc15;
            margin-bottom: 1rem;
        }
        ul {
            list-style: none;
            padding: 0;
            margin: 2rem 0;
        }
        ul li {
            background: #23272f;
            margin: 1.2rem;
            padding: 1rem;
            border-radius: 8px;
            box-shadow: 0 1px 4px #0002;
            display: inline-block;
            align-items: center;
            justify-content: space-between;
        }
        li:hover {
            background: #6d4e00;
        }
        ul li a {
            color: #a3e635;
            text-decoration: none;
            font-weight: 500;
            
        }
        ul li a:hover {
            text-decoration: underline;
            color: #ffcc00;
        }
        footer {
            background: #23272f;
            color: #888;
            text-align: center;
            padding: 1rem 0;
            font-size: 0.95rem;
            margin-top: auto;
            box-shadow: 0 -2px 8px #0002;
        }