:root {
    --background: rgba(30, 31, 34, 0.95);
    --accent: #7289DA;
    --hover: #5865F2;
    --text-color: #FFFFFF;
    --card-bg: rgba(44, 47, 51, 0.85);
    --border-radius: 8px;
}

body {
    font-family: 'Segoe UI', sans-serif;
    background: var(--background);
    color: var(--text-color);
    text-align: center;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100vh;
    justify-content: center;
}

a {
    display: inline-block;
    padding: 12px 24px;
    background: var(--accent);
    color: var(--text-color);
    text-decoration: none;
    font-size: 16px;
    border-radius: var(--border-radius);
    transition: background 0.3s;
}

a:hover {
    background: var(--hover);
}

/* UI Card Styling */
#username {
    background: var(--card-bg);
    padding: 15px;
    border-radius: var(--border-radius);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}
