body {
            background: #000 !important;
            color: #eee;
        }

        .container {
            display: none;
        }

        .title {
            display: none;
        }

        body {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .main {
            background: transparent !important;
            border: none !important;
            width: 900px;
            position: static;
            transform: none;
            left: auto;
            display: flex;
            gap: 0;
            height: auto;
            padding: 0;
            box-sizing: border-box;
            margin: 0 auto;
        }

        .sidebar {
            position: static;
            margin: 0;
            background: #0d0d0d;
            border: 1px solid #222;
            font-size: 13px;
            height: auto;
            flex-shrink: 0;
        }

        .navhead {
            background: #111;
            border-bottom: 1px solid #222;
            height: 36px;
            display: flex;
            align-items: center;
            padding: 0 10px;
            font-size: 12px;
            color: #666;
            font-family: 'Courier New', monospace;
        }

        .links {
            width: auto;
            margin: 0;
            padding: 10px;
        }

        .links ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .links li {
            list-style: none;
            margin-bottom: 4px;
        }

        .links a {
            color: #999;
            text-decoration: none;
            font-family: 'Courier New', monospace;
            font-size: 12px;
            display: block;
            padding: 3px 8px;
            border: 1px solid transparent;
        }

        .links a:hover {
            color: #fff;
            border-color: #333;
            background: #111;
        }

        .sidebox {
            margin: 10px;
            width: auto;
            border: 1px solid #222;
            background: #0a0a0a;
            border-radius: 0;
            height: auto;
            padding: 8px;
            text-align: center;
        }

        .sidebox img {
            max-width: 80px;
            margin: 2px;
        }

        .sidebar p {
            padding: 8px 10px;
            color: #555;
            font-size: 11px;
            font-family: 'Courier New', monospace;
        }

        .center {
            position: static;
            margin: 0;
            border: 1px solid #222;
            border-left: none;
            border-radius: 0;
            background: #080808;
            width: 100%;
            height: auto;
            padding: 20px;
            overflow: auto;
        }

        .center p {
            color: #bbb;
            font-size: 12px;
            font-family: 'Verdana', sans-serif;
            line-height: 1.7;
            margin-bottom: 12px;
        }

        
        #discord-card {
            background: #111;
            border: 1px solid #222;
            padding: 14px;
            margin-bottom: 20px;
            display: flex;
            gap: 14px;
            align-items: flex-start;
        }

        .avatar-container {
            position: relative;
            width: 72px;
            height: 72px;
            flex-shrink: 0;
        }

        #discord-avatar {
            width: 72px;
            height: 72px;
            border-radius: 50%;
            border: 2px solid #333;
            background: #222;
            box-sizing: border-box;
            position: absolute;
            top: 0;
            left: 0;
        }

        #discord-avatar-decoration {
            width: 86px;
            height: 86px;
            position: absolute;
            top: -7px;
            left: -7px;
            display: none;
            pointer-events: none;
        }

        .dc-info {
            flex: 1;
            min-width: 0;
        }

        .dc-name {
            font-family: 'Courier New', monospace;
            font-size: 15px;
            color: #fff;
            font-weight: bold;
            margin-bottom: 2px;
        }

        .dc-tag {
            font-family: 'Courier New', monospace;
            font-size: 11px;
            color: #555;
            margin-bottom: 4px;
        }



        .dc-badge-container {
            display: flex;
            align-items: center;
            gap: 4px;
            margin-bottom: 8px;
        }



        .dc-status-row {
            display: flex;
            align-items: center;
            gap: 6px;
            margin-bottom: 6px;
        }

        .dc-status-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            flex-shrink: 0;
        }

        .dc-status-dot.online {
            background: #23a55a;
        }

        .dc-status-dot.idle {
            background: #f0b232;
        }

        .dc-status-dot.dnd {
            background: #f23f43;
        }

        .dc-status-dot.offline {
            background: #80848e;
        }

        .dc-status-text {
            font-family: 'Courier New', monospace;
            font-size: 11px;
            color: #777;
        }

        .dc-activity {
            font-family: 'Courier New', monospace;
            font-size: 11px;
            color: #666;
            border-left: 2px solid #333;
            padding-left: 8px;
            margin-top: 6px;
        }

        .dc-activity span {
            color: #999;
        }

        .dc-devices {
            display: flex;
            gap: 6px;
            margin-top: 6px;
        }

        .dc-device {
            font-size: 10px;
            font-family: 'Courier New', monospace;
            color: #555;
            border: 1px solid #2a2a2a;
            padding: 1px 5px;
            background: #0d0d0d;
        }

        .dc-device.active {
            color: #888;
            border-color: #444;
        }

        .dc-badge {
            font-size: 10px;
            font-family: 'Courier New', monospace;
            color: #555;
            border: 1px solid #222;
            padding: 1px 6px;
            background: #0d0d0d;
            display: inline-block;
            margin-bottom: 6px;
        }

        .section-label {
            font-family: 'Courier New', monospace;
            font-size: 10px;
            color: #444;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 10px;
            border-bottom: 1px solid #1a1a1a;
            padding-bottom: 4px;
        }