    :root {
        --bg: #030407;
        --card: rgba(17, 21, 39, 0.7);
        --cyan: #4feaff;
        --purple: #8b5cf6;
        --text: #f0f0f5;
        --muted: #a1a1aa;
        --accent-glow: rgba(79, 234, 255, 0.15);
    }

    body {
        margin: 0;
        font-family: "Inter", sans-serif;
        background: var(--bg);
        color: var(--text);
        overflow-x: hidden;
    }

    /* Animated background glow */
    body::before {
        content: "";
        position: fixed;
        inset: 0;
        background:
            radial-gradient(circle at 20% 30%, rgba(139, 92, 246, 0.1), transparent 40%),
            radial-gradient(circle at 80% 70%, rgba(79, 234, 255, 0.1), transparent 40%);
        z-index: -1;
        animation: pulse 8s ease-in-out infinite alternate;
    }

    @keyframes pulse {
        0% { opacity: 0.5; }
        100% { opacity: 1; }
    }

    /* Header */
    .header {
        background: rgba(10, 15, 30, 0.8);
        backdrop-filter: blur(10px);
        color: var(--cyan);
        padding: 12px 20px;
        font-size: 22px;
        font-weight: 700;
        border-bottom: 1px solid rgba(255,255,255,0.05);
        text-shadow: 0 0 10px rgba(79, 234, 255, 0.3);
    }

    /* Layout */
    .container {
        display: flex;
        min-height: calc(100vh - 50px);
    }

    /* Sidebar */
    .sidebar {
        width: 240px;
        background: var(--card);
        backdrop-filter: blur(12px);
        padding: 20px;
        border-right: 1px solid rgba(255,255,255,0.05);
    }

    .sidebar h3 {
        margin-top: 0;
        font-size: 16px;
        color: var(--muted);
        letter-spacing: 0.1em;
        text-transform: uppercase;
        padding-bottom: 6px;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .sidebar a {
        display: block;
        padding: 6px 0;
        color: var(--text);
        text-decoration: none;
        font-size: 15px;
        transition: 0.25s;
    }

    .sidebar a:hover {
        color: var(--cyan);
        text-shadow: 0 0 8px var(--accent-glow);
    }

    /* Main content */
    .content {
        flex: 1;
        padding: 30px;
    }

    .content h1 {
        margin-top: 0;
        font-size: 32px;
        padding-bottom: 10px;
        border-bottom: 2px solid rgba(255,255,255,0.05);
        background: linear-gradient(to right, #fff, var(--cyan), var(--purple));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .content h2 {
        color: var(--cyan);
        text-shadow: 0 0 10px rgba(79, 234, 255, 0.3);
    }

    /* Infobox */
    .infobox {
        float: right;
        width: 260px;
        background: var(--card);
        border: 1px solid rgba(255,255,255,0.1);
        padding: 12px;
        margin: 0 0 20px 20px;
        border-radius: 12px;
        backdrop-filter: blur(12px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    }

    .infobox-title {
        font-size: 18px;
        font-weight: bold;
        background: linear-gradient(45deg, var(--cyan), var(--purple));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        padding-bottom: 8px;
        margin-bottom: 10px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .infobox img {
        width: 100%;
        border: 1px solid rgba(255,255,255,0.1);
        border-radius: 8px;
        margin-bottom: 10px;
    }

    table.infotable {
        width: 100%;
        border-collapse: collapse;
        color: var(--muted);
    }

    table.infotable td {
        padding: 4px 0;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }

    table.infotable strong {
        color: var(--cyan);
    }

    /* Footer */
    .footer {
        text-align: center;
        padding: 12px;
        background: rgba(10, 15, 30, 0.8);
        backdrop-filter: blur(10px);
        border-top: 1px solid rgba(255,255,255,0.05);
        font-size: 14px;
        color: var(--muted);
    }